merge from open-source master

Change-Id: I94b3aacb3478b1d9e0751c02bb301d5f9a2cf05c
This commit is contained in:
The Android Open Source Project
2010-05-19 09:20:22 -07:00
2 changed files with 19 additions and 0 deletions

View File

@@ -131660,6 +131660,17 @@
visibility="public"
>
</field>
<field name="MEDIA_IGNORE_FILENAME"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;.nomedia&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="MEDIA_SCANNER_VOLUME"
type="java.lang.String"
transient="false"

View File

@@ -1819,4 +1819,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";
}