Merge "Show proper icons for SD and USB attached storage." into nyc-dev am: eef85e0c02

am: f3322fccfa

* commit 'f3322fccfa21ce251055b1051788a5b411c28f26':
  Show proper icons for SD and USB attached storage.
This commit is contained in:
Steve McKay
2016-03-03 20:38:07 +00:00
committed by android-build-merger
5 changed files with 103 additions and 24 deletions

View File

@@ -568,6 +568,22 @@ public final class DocumentsContract {
* @hide
*/
public static final int FLAG_HAS_SETTINGS = 1 << 17;
/**
* Flag indicating that this root is on removable SD card storage.
*
* @see #COLUMN_FLAGS
* @hide
*/
public static final int FLAG_REMOVABLE_SD = 1 << 18;
/**
* Flag indicating that this root is on removable USB storage.
*
* @see #COLUMN_FLAGS
* @hide
*/
public static final int FLAG_REMOVABLE_USB = 1 << 19;
}
/**