summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2013-09-03 03:50:46 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-09-03 03:50:46 +0000
commit0ceb40f6fdacb93d15cfaebd61ce5aee27b74823 (patch)
tree79fc746adc032475d0cdfa83c18fa6fdb8ba6acf
parent7298c1c8865cf37e7f3a63ac26e4e45673c9792b (diff)
parentdb9020e34a49a3eedc42d67ada0ae98ee29e813f (diff)
downloadandroid_packages_providers_DownloadProvider-0ceb40f6fdacb93d15cfaebd61ce5aee27b74823.tar.gz
android_packages_providers_DownloadProvider-0ceb40f6fdacb93d15cfaebd61ce5aee27b74823.tar.bz2
android_packages_providers_DownloadProvider-0ceb40f6fdacb93d15cfaebd61ce5aee27b74823.zip
Merge "New recent documents behavior." into klp-dev
-rw-r--r--src/com/android/providers/downloads/DownloadStorageProvider.java24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/com/android/providers/downloads/DownloadStorageProvider.java b/src/com/android/providers/downloads/DownloadStorageProvider.java
index 728a5aa0..bc2ec0c7 100644
--- a/src/com/android/providers/downloads/DownloadStorageProvider.java
+++ b/src/com/android/providers/downloads/DownloadStorageProvider.java
@@ -81,7 +81,8 @@ public class DownloadStorageProvider extends DocumentsProvider {
row.offer(Root.COLUMN_ROOT_ID, DOC_ID_ROOT);
row.offer(Root.COLUMN_ROOT_TYPE, Root.ROOT_TYPE_SHORTCUT);
row.offer(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY | Root.FLAG_PROVIDES_AUDIO
- | Root.FLAG_PROVIDES_VIDEO | Root.FLAG_PROVIDES_IMAGES);
+ | Root.FLAG_PROVIDES_VIDEO | Root.FLAG_PROVIDES_IMAGES
+ | Root.FLAG_SUPPORTS_RECENTS);
row.offer(Root.COLUMN_ICON, R.mipmap.ic_launcher_download);
row.offer(Root.COLUMN_TITLE, getContext().getString(R.string.root_downloads));
row.offer(Root.COLUMN_DOCUMENT_ID, DOC_ID_ROOT);
@@ -145,6 +146,27 @@ public class DownloadStorageProvider extends DocumentsProvider {
}
@Override
+ public Cursor queryRecentDocuments(String rootId, String[] projection)
+ throws FileNotFoundException {
+ final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
+
+ // Delegate to real provider
+ final long token = Binder.clearCallingIdentity();
+ Cursor cursor = null;
+ try {
+ cursor = mDm.query(new DownloadManager.Query().setOnlyIncludeVisibleInDownloadsUi(true)
+ .setFilterByStatus(DownloadManager.STATUS_SUCCESSFUL));
+ while (cursor.moveToNext() && result.getCount() < 12) {
+ includeDownloadFromCursor(result, cursor);
+ }
+ } finally {
+ IoUtils.closeQuietly(cursor);
+ Binder.restoreCallingIdentity(token);
+ }
+ return result;
+ }
+
+ @Override
public ParcelFileDescriptor openDocument(String docId, String mode, CancellationSignal signal)
throws FileNotFoundException {
if (!"r".equals(mode)) {