summaryrefslogtreecommitdiffstats
path: root/core/res
Commit message (Collapse)AuthorAgeFilesLines
* Add new attribute 'searchSettingsDescription' for use within an app'sMike LeBeau2009-06-302-0/+6
| | | | | | searchable.xml. This attribute defines the string to be shown as the description a searchable in the 'searchable items' section of system search settings.
* Implement issue #1943927 (need notification in status bar when adb is active)Dianne Hackborn2009-06-301-0/+5
| | | | | | | This is a little hacky -- we just assume that if adb is enabled and power is connected through usb, then it is active. The icons and text are temporary until final design is provided.
* Replace indeterminate progress animated asset with new onesRomain Guy2009-06-3017-173/+204
|
* Merge change 5692 into donutAndroid (Google) Code Review2009-06-291-2/+2
|\ | | | | | | | | * changes: Adjust the character picker layout a little so it will fit on the screen.
| * Adjust the character picker layout a little so it will fit on the screen.Eric Fischer2009-06-291-2/+2
| | | | | | | | | | | | | | Previously when there were three rows of characters, the Cancel button would hang off the edge a little. Bug 1747709
* | The BACKUP permission should have the signatureOrSystem protectionLevel,Joe Onorato2009-06-291-1/+1
|/ | | | because the setup wizard isn't signed by the same cert as the framework.
* Update spinner's drawables. Clean up resources, pave the way for new animation.Romain Guy2009-06-2620-90/+16
|
* Expand support for different screen sizes.Dianne Hackborn2009-06-262-2/+59
| | | | | | | | | Applications can now declare that they support small, normal, or large screens. Resource selection can also be done based on these sizes. By default, pre-Donut apps are false for small and large, and Donut or later apps are assumed to support all sizes. In either case they can use <supports-screens> in their manifest to declare what they actually support.
* Start backing up wallpaperChristopher Tate2009-06-241-0/+1
| | | | | | | | | | | | | | | | | | This CL does the following: + adds an AbsoluteFileBackupHelper class for managing backup of files known by absolute path, not based off of the app's getFilesDir() root + bumps up the collection interval from its testing-only default of 1 second to 3 minutes + adds a SystemBackupAgent class to the main system package and names it as the android:backupAgent for the main OS package. Right now this agent only backs up & restores the wallpaper file. + amend the Wallpaper Service to inform the Backup Manager when the wallpaper changes. On the subject of the 3-minute collection interval before the backup actually occurs: this can be short-circuited from an adb shell. Running the command 'bmgr run' will cause the Backup Manager to kick off any pending backup operations immediately.
* Spell out the month names in the de_AT date format file.Eric Fischer2009-06-241-0/+33
| | | | | It should be inherited from base de anyway, but all the others are explicit about everything so be consistent.
* Move to a single dropdown background for the search dialog. This oneMike LeBeau2009-06-242-0/+0
| | | | | | | | | | | is full-screen width but has rounded corners on the bottom so it doesn't look crappy if the list is not full-screen height. This was already being used for in-app search, so I just got rid of the old global search background and use the in-app one for everything. By removing the lines in SearchDialog, I'm causing it to rely on the value specified for the dropdown background in frameworks/base/core/res/res/layout/search_bar.xml.
* Fixes #1905761. Updates the height of ACTV's drop down whenever the IME changes.Romain Guy2009-06-233-1/+13
|
* Edits to SD card notification strings to shorten them.Roy West2009-06-231-5/+5
| | | | | | | | They are now very short and blunt. The real fix is to make them marquee or open another dialog or something as discussed in the bug. I hope these are short enough for Donut so all essential text is visible in the notification. Bug 1760196
* Fix a few more blatantly wrong date formats.Eric Fischer2009-06-2214-28/+43
| | | | | | Make punctuation in German and Italian numeric formats self-consistent. Add missing long standalone Italian month names. Fix doubled month words in Japanese, Chinese, and Korean.
* Merge change 4947 into donutAndroid (Google) Code Review2009-06-2227-200/+200
|\ | | | | | | | | * changes: Yet another round of trying to get the date formats right.
| * Yet another round of trying to get the date formats right.Eric Fischer2009-06-2227-200/+200
| | | | | | | | | | | | | | The change this time is to prefer a format derived from an interval format to one that is inherited from the root locale. Only a few locales don't define any interval formats at all and are still have to get anything from the root locale.
* | Make browser bookmarks permissions part of the public API.Leon Scroggins2009-06-222-1/+33
| |
* | Set the search bar's AutoCompleteTextView to ellipsize=end.Mike LeBeau2009-06-201-0/+1
| | | | | | | | | | After Romain's change 4829, we can set this to make hint text ellipsize (and thus not line wrap) in the search dialog.
* | Change addCertificate to take byte[] instead of String as we don't know the ↵Grace Kloba2009-06-191-0/+2
| | | | | | | | | | | | encoding. In WebView, if we run into the certificate, we will save it to the Keystore instead of sending it to the WebKit.
* | Add "why?" button to low battery dialog.Dianne Hackborn2009-06-191-0/+3
|/ | | | This takes the user to the power usage activity.
* Use standalone month name instead of format month name in year-month format.Eric Fischer2009-06-182-2/+2
| | | | I think this is the last place the Czech date formats still had problems.
* Merge change 4561 into donutAndroid (Google) Code Review2009-06-1866-28/+94
|\ | | | | | | | | * changes: Work around the Czech lack of abbreviated month names.
| * Work around the Czech lack of abbreviated month names.Eric Fischer2009-06-1866-28/+94
| | | | | | | | | | Make the date formats that want abbreviated month names use either the full name or a numeric format.
* | Use a full-screen-width version of the in-app search dropdown withMike LeBeau2009-06-181-0/+0
| | | | | | | | | | rounded corners. We may decide to use this for global search too, I'll try that out in a bit.
* | Icons for create a contact and call contact suggestions, to be used by allMike LeBeau2009-06-182-0/+0
|/ | | | contacts providers.
* Fixes #1414069. Display recent activities with two lines of text.Romain Guy2009-06-172-80/+71
|
* Fix the build: Remove ADD_SYSTEM_SERVICE, which I had accidentallyDan Egnor2009-06-1520-59/+0
| | | | | | | | reintroduced in an errant and clumsy git merge operation. Also remove permission label and description strings for now-deleted permissions FOTA_UPDATE and (within the SettingsProvider package) WRITE_GSERVICES.
* Remove obsolete FOTA_UPDATE permission (which should never have beenDan Egnor2009-06-151-3/+6
| | | | | | | | | | made public, and wouldn't be used by any third party applications, and no longer does anything regardless). Also remove the WRITE_GSERVICES permission from the SettingsProvider package's manifest (the declaration there was redundant with the one in the core manifest, where all the other settings-related permissions live -- no other core package includes its own permission definitions).
* Remove ADD_SYSTEM_SERVICE and SET_PROCESS_FOREGROUND permissions.Dianne Hackborn2009-06-1517-89/+0
| | | | These are no longer used.
* Use locale-appropriate formatting to display application sizes like "252KB".Eric Fischer2009-06-122-0/+6
| | | | | In particular allow the French and Polish translators to put a space between the number and the unit.
* Merge change 4017 into donutAndroid (Google) Code Review2009-06-1266-0/+66
|\ | | | | | | | | * changes: Make the date format preference work again.
| * Make the date format preference work again.Eric Fischer2009-06-1266-0/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | It is only used for numeric dates -- spelled-out dates have such a complex variety of formats that they can only be meaningfully formatted from locale strings. In addition, the preference is left null when initializing, on the assumption that the locale will still specify a more useful numeric format than we can guess as part of a build-wide configuration. But if the user has specified a format, the date will be formatted in the order they asked for, with locale-appropriate punctuation substituted in.
* | Show proper suggestion item hilite on selection.Satish Sampath2009-06-123-5/+1
|/ | | | With the new implementation of using a SuggestionItemView, we no longer need to draw a solid background for all items in the suggestion listview. Hence removing the code to draw a default white background, and make the item transparent so the listview-drawn selection hilite shows through.
* Hook the 12- or 24-hour time format checkbox back up.Eric Fischer2009-06-1166-0/+275
| | | | | | The format strings are newly generated from CLDR. The code is once again the same as in cupcake: do the natural thing for the locale if the user has never specified, but follow the checkbox if the user has ever set it.
* NEW_API: Expose queryAfterZeroResults searchable attribute.Satish Sampath2009-06-111-0/+1
| | | | | | | If this attribute is provided and true, the searchable activity will be invoked for all queries in a particular session. If set to false and the activity returned zero results for a query, it will not be invoked again in that session for supersets of that zero-results query. For example, if the activity returned zero results for "bo", it would not be queried again for "bob" as an optimization. The default value is false.
* Added attribute queryAfterZeroResults to searchables.Satish Sampath2009-06-111-0/+8
| | | | As of now we are just reading it from the xml and not acting upon it, that would come in a subsequent change.
* Merge change 3857 into donutAndroid (Google) Code Review2009-06-101-15/+18
|\ | | | | | | | | * changes: Allow arrays of values for power profile data.
| * Allow arrays of values for power profile data.Amith Yamasani2009-06-101-15/+18
| | | | | | | | | | | | | | | | | | Parse arrays for data that has different levels with non-linear power increase. Track radio data awake_time from kernel and mobile/total data transfers. Use dummy values for default power_profile.xml. Actual values will be in a product overlay.
* | Reimport Portuguese translations.Eric Fischer2009-06-101-144/+80
| |
* | Merge change 3754 into donutAndroid (Google) Code Review2009-06-1065-106/+171
|\ \ | | | | | | | | | | | | * changes: Fix some 12- vs 24-hour problems in the FormatDateRange strings.
| * | Fix some 12- vs 24-hour problems in the FormatDateRange strings.Eric Fischer2009-06-1065-106/+171
| |/ | | | | | | | | | | | | | | | | | | | | | | | | Use a resource instead of a hardcoded string for the 24-hour format since it is not exactly the same in every locale. Make sure the 12-hour format is actually for a 12-hour clock, even in locales where this is not a normal thing to do. In the cap_ampm version, do not have it try to capitalize "am" and "pm" if these are non-ASCII strings, since strftime() doesn't know about Unicode and will mess it up. Add a comment so that people don't think the YEAR_IN_MILLIS constant is actually the length of any real year.
* | am a8c3821e: AI 149721: Import Portuguese translations.Eric Fischer2009-06-107-0/+977
|\ \ | |/ |/| | | | | | | | | Merge commit 'a8c3821e5a9017b557744bf3439b0cde5ace86db' into donut * commit 'a8c3821e5a9017b557744bf3439b0cde5ace86db': AI 149721: Import Portuguese translations.
| * AI 149721: Import Portuguese translations.Eric Fischer2009-06-107-0/+977
| | | | | | | | Automated import of CL 149721
* | Merge change 3676 into donutAndroid (Google) Code Review2009-06-1065-449/+449
|\ \ | | | | | | | | | | | | * changes: Get the FormatDateRange tests passing again.
| * | Get the FormatDateRange tests passing again.Eric Fischer2009-06-0965-449/+449
| | | | | | | | | | | | | | | | | | This fixes a few places that were accidentally using the wrong numbered parameter in the format call. It also makes other adjustments so that the formats for English are exactly the same as they were in Cupcake.
* | | Add support for gestures in Home.Romain Guy2009-06-093-0/+52
|/ / | | | | | | | | Adds a new animation style for the gestures pad, and de-normalize the scores in the recognition engine.
* | Regenerate all the date and time interval formats from CLDR data.Eric Fischer2009-06-0982-686/+2229
| |
* | Rename genieprovider to enhancedgooglesearch.Satish Sampath2009-06-091-1/+1
| |
* | Adds UI support for custom search widget item backgrounds.Satish Sampath2009-06-093-0/+10
| | | | | | | | | | | | - A new column was added to SearchManager cursors to specify background color (optional) - Two new colour references added to the theme for normal and search widget corpus items (we need both to be opaque for the items to render properly) - SuggestionAdapter was updated to choose the right theme colour for each item
* | Removes gestures from ListView.Romain Guy2009-06-083-11/+0
| |