summaryrefslogtreecommitdiffstats
path: root/ui/AndroidManifest.xml
Commit message (Collapse)AuthorAgeFilesLines
* Delegate to documents UI; improve contents.Jeff Sharkey2013-08-151-3/+3
| | | | | | | | | When Downloads app is launched, delegate to new documents management UI. Use DownloadManager public API to match the contents of the existing Downloads UI. Bug: 10329983 Change-Id: Iaa1a1dc013cfe3b17d31ecc764d4c4cc13f62258
* Downloads should always be available.Jeff Sharkey2013-04-111-1/+2
| | | | | Bug: 8596021 Change-Id: I56149da0519915764f5c38a8141e1a7dcfff5b25
* Update Downloads UI for RTL languages.Jeff Sharkey2013-02-051-2/+3
| | | | | Bug: 8133419 Change-Id: I0c8c0909e41d51cfa2e136304a0a13c5d46afb3b
* bug:3308769 add CAB options to downloads appVasu Nori2011-02-251-1/+3
| | | | Change-Id: I9bb1374b7ca0053210274e5d6981b2f2dcf6bfca
* bug:3363006 enable hw acceleration for downloadsUI appVasu Nori2011-01-201-1/+2
| | | | | | this is in master branch..not HC Change-Id: I88740b4d0fb1ca987fff556c520a753b1bcd8ad3
* Move icons to mipmap.Ying Wang2010-11-231-1/+1
| | | | Change-Id: I0d541c99b413ba8124abe307b81fe35fdf0fe610
* Make downloads UI singleTop.Steve Howard2010-09-301-1/+2
| | | | | | | | Browser downloads, when clicked, will launch the downloads UI. When clicked from the downloads UI (as opposed to a notification), we don't want to launch a second copy of the downloads UI activity. Change-Id: I0ae546bb423814f1bd1d6481085bf5f237d1213b
* Make downloads UI accept new intent action.Steve Howard2010-09-241-0/+4
| | | | Change-Id: I08c96e1c834fa599e05f18c4c05c3ad5339c3c74
* New assets for download manager UI.Steve Howard2010-09-201-1/+2
| | | | | | Includes new launcher icon and new icon/string for sorting by time. Change-Id: I5b87da9d5fa53184b1a3096f25e0d45678aa1700
* New URI structure with "my_downloads" and "all_downloads"Steve Howard2010-09-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change introduces a second view into the download manager database via a set of URIs starting with /all_downloads, renaming the original /download URIs to /my_downloads. In addition to making things more clear, this change allows the downloads UI to grant permissions on individual downloads to viewer apps. The old semantics were: * for ordinary callers, /download included only downloads initiated by the calling UID * for intraprocess calls or calls by root, /download included all downloads The new semantics are * /my_downloads always includes only downloads initiated by the calling UID, and requires only INTERNET permission. It could just as well require no permission, but that's not possible in the framework, since path-permissions can only broaden access, not tighten it. It doesn't matter, because these URIs are useless without INTERNET permission -- if a user can't initiate downloads, there's no reason to read this. * /all_downloads always includes all downloads on the system, and requires the new permission ACCESS_ALL_DOWNLOADS. This permission is currently protectionLevel=signature -- this could be relaxed later to support third-party download managers. All download manager code has been changed to use /all_downloads URIs, except when passing a URI to another app. In making this change across the download manager code, I've taken some liberties in cleaning things up. Other apps are unchanged and will use /my_downloads. Finally, this incorporates changes to DownloadManager to return a content URI for /cache downloads -- the download UI no longer assumes it's a file URI, and it grants permissions to the receiver of the VIEW intent. The public API test has also been updated. I've also fixed some null cursor checking in DownloadManager. Change-Id: I05a501eb4388249fe80c43724405657c950d7238
* First pass at new system UI for download manager.Steve Howard2010-09-081-0/+18
This is the initial checkin for a new system UI for the download manager. This UI shows all entries present in the Download Manager database, sorted by either date or size. It allows the user to monitor status, open files, and delete/cancel entries. The code was initially copied from the "Downloads" page of packages/apps/Browser, since the design is based on that UI. Much of the code is changed, although DateSortedExpandableListAdapter is nearly identical. The code is not quite finished, but this is very much a working first pass. Change-Id: I7fe102e9f2998e57d893cc3c0f5f6da1cf2db549