summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2013-08-07 18:33:57 -0700
committerJeff Sharkey <jsharkey@android.com>2013-08-07 18:39:07 -0700
commit6a09c3294997dc9e3c83b8431f7b496b19670014 (patch)
tree759a839d9a50b999468c9b263a4085bfdc984586 /res
parent56a03b18e3691824f8012049466954a668b68ba8 (diff)
downloadandroid_packages_providers_DownloadProvider-6a09c3294997dc9e3c83b8431f7b496b19670014.tar.gz
android_packages_providers_DownloadProvider-6a09c3294997dc9e3c83b8431f7b496b19670014.tar.bz2
android_packages_providers_DownloadProvider-6a09c3294997dc9e3c83b8431f7b496b19670014.zip
First pass at Downloads storage provider.
Offers a view of Downloads through the lens of DocumentsContract for surfacing in new storage UI. Change-Id: I4373c2498b4b82bfee2300a00f8d0bb734bf574c
Diffstat (limited to 'res')
-rw-r--r--res/mipmap-hdpi/ic_launcher_download.pngbin0 -> 10593 bytes
-rw-r--r--res/mipmap-mdpi/ic_launcher_download.pngbin0 -> 23509 bytes
-rw-r--r--res/mipmap-xhdpi/ic_launcher_download.pngbin0 -> 32416 bytes
-rw-r--r--res/mipmap-xxhdpi/ic_launcher_download.pngbin0 -> 21228 bytes
-rw-r--r--res/values/strings.xml3
-rw-r--r--res/xml/document_provider.xml19
6 files changed, 22 insertions, 0 deletions
diff --git a/res/mipmap-hdpi/ic_launcher_download.png b/res/mipmap-hdpi/ic_launcher_download.png
new file mode 100644
index 00000000..3f092d39
--- /dev/null
+++ b/res/mipmap-hdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/mipmap-mdpi/ic_launcher_download.png b/res/mipmap-mdpi/ic_launcher_download.png
new file mode 100644
index 00000000..76652fb9
--- /dev/null
+++ b/res/mipmap-mdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/mipmap-xhdpi/ic_launcher_download.png b/res/mipmap-xhdpi/ic_launcher_download.png
new file mode 100644
index 00000000..7d7b1b11
--- /dev/null
+++ b/res/mipmap-xhdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/mipmap-xxhdpi/ic_launcher_download.png b/res/mipmap-xxhdpi/ic_launcher_download.png
new file mode 100644
index 00000000..0921c124
--- /dev/null
+++ b/res/mipmap-xxhdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 3a060e2d..2981047c 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -213,4 +213,7 @@
[CHAR LIMIT=200] -->
<string name="download_no_application_title">Can\'t open file</string>
+ <!-- Label describing Downloads as a storage root [CHAR LIMIT=32] -->
+ <string name="root_downloads">Downloads</string>
+
</resources>
diff --git a/res/xml/document_provider.xml b/res/xml/document_provider.xml
new file mode 100644
index 00000000..77891cbc
--- /dev/null
+++ b/res/xml/document_provider.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<documents-provider xmlns:android="http://schemas.android.com/apk/res/android"
+ android:customRoots="true">
+</documents-provider>