diff options
author | Romain Guy <romainguy@android.com> | 2010-05-19 00:03:34 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2010-05-19 00:03:34 -0700 |
commit | e02a63f012b69ce60a94de5980a1c615b26ff9c5 (patch) | |
tree | fa3c49cd497f0708a894e94414cd504eaf64180c | |
parent | 7a029da6d607e0a96ac93e81edefb1d0d86039bf (diff) | |
parent | 8ce072d579e0c0e9329b5a3830155de8da7de4cf (diff) | |
download | frameworks_base-e02a63f012b69ce60a94de5980a1c615b26ff9c5.zip frameworks_base-e02a63f012b69ce60a94de5980a1c615b26ff9c5.tar.gz frameworks_base-e02a63f012b69ce60a94de5980a1c615b26ff9c5.tar.bz2 |
Merge "Add and document .nomedia constant for MediaStore (Issue 6365)"
-rw-r--r-- | api/current.xml | 11 | ||||
-rw-r--r-- | core/java/android/provider/MediaStore.java | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index d02c826..eb01451 100644 --- a/api/current.xml +++ b/api/current.xml @@ -117955,6 +117955,17 @@ visibility="public" > </field> +<field name="MEDIA_IGNORE_FILENAME" + type="java.lang.String" + transient="false" + volatile="false" + value="".nomedia"" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="MEDIA_SCANNER_VOLUME" type="java.lang.String" transient="false" diff --git a/core/java/android/provider/MediaStore.java b/core/java/android/provider/MediaStore.java index 062080d..f704e55 100644 --- a/core/java/android/provider/MediaStore.java +++ b/core/java/android/provider/MediaStore.java @@ -1695,4 +1695,12 @@ public final class MediaStore { * Name of current volume being scanned by the media scanner. */ public static final String MEDIA_SCANNER_VOLUME = "volume"; + + /** + * Name of the file signaling the media scanner to ignore media in the containing directory + * and its subdirectories. Developers should use this to avoid application graphics showing + * up in the Gallery and likewise prevent application sounds and music from showing up in + * the Music app. + */ + public static final String MEDIA_IGNORE_FILENAME = ".nomedia"; } |