diff options
| author | 2020-01-09 04:50:47 +0000 | |
|---|---|---|
| committer | 2020-01-09 04:50:47 +0000 | |
| commit | 789539d86ffb97f10f199db9b7ed2695b942f7ea (patch) | |
| tree | 4c6cc85a6627ab5e68c69b5afa1d727218e0e4eb | |
| parent | 6da6e4f73f368daf2c8ec7b6accda31692dbe140 (diff) | |
| parent | ffd012289dcbf8607659e49f8f8f11595072f463 (diff) | |
Merge "Update java doc for FLAG_DIR_BLOCKS_TREE"
| -rw-r--r-- | core/java/android/provider/DocumentsContract.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/provider/DocumentsContract.java b/core/java/android/provider/DocumentsContract.java index 0a3c333ae7b1..ef8a2860cf4f 100644 --- a/core/java/android/provider/DocumentsContract.java +++ b/core/java/android/provider/DocumentsContract.java @@ -553,7 +553,9 @@ public final class DocumentsContract { /** * Flag indicating that a document is a directory that wants to block itself * from being selected when the user launches an {@link Intent#ACTION_OPEN_DOCUMENT_TREE} - * intent. Only valid when {@link #COLUMN_MIME_TYPE} is {@link #MIME_TYPE_DIR}. + * intent. Individual files can still be selected when launched via other intents + * like {@link Intent#ACTION_OPEN_DOCUMENT} and {@link Intent#ACTION_GET_CONTENT}. + * Only valid when {@link #COLUMN_MIME_TYPE} is {@link #MIME_TYPE_DIR}. * <p> * Note that this flag <em>only</em> applies to the single directory to which it is * applied. It does <em>not</em> block the user from selecting either a parent or |