From 546f0af6bed46c59bed3fb84b678e6ae1c117bdc Mon Sep 17 00:00:00 2001 From: Katie McCormick Date: Tue, 12 Nov 2013 18:42:08 -0800 Subject: Doc update: Minor additions to storage doc Change-Id: I59aa961a94393221be3c5f847a9fc82aa43e3a6f --- .../guide/topics/providers/document-provider.jd | 93 ++++++++++++++++------ 1 file changed, 68 insertions(+), 25 deletions(-) (limited to 'docs/html') diff --git a/docs/html/guide/topics/providers/document-provider.jd b/docs/html/guide/topics/providers/document-provider.jd index 9af8d5a..cd1fd1a 100644 --- a/docs/html/guide/topics/providers/document-provider.jd +++ b/docs/html/guide/topics/providers/document-provider.jd @@ -3,8 +3,11 @@ page.title=Storage Access Framework
-

In this document

-
    +

    In this document + + show more +

    +
    1. Overview
    2. @@ -38,8 +41,25 @@ page.title=Storage Access Framework
      1. {@link android.provider.DocumentsProvider}
      2. {@link android.provider.DocumentsContract}
      3. -
      4. {@link android.provider.DocumentsContract.Document}
      5. -
      6. {@link android.provider.DocumentsContract.Root}
      7. +
      + +

      Videos

      + +
        +
      1. +DevBytes: Android 4.4 Storage Access Framework: Provider
      2. +
      3. +DevBytes: Android 4.4 Storage Access Framework: Client
      4. +
      + + +

      Code Samples

      + +
        +
      1. +Storage Provider
      2. +
      3. +StorageClient

      See Also

      @@ -50,18 +70,28 @@ page.title=Storage Access Framework
    +
-

Android 4.4 (API level 19) introduces the Storage Access Framework. The -Storage Access Framework encapsulates capabilities in the Android platform that -allow apps to request files from file storage services. The Storage Access -Framework includes the following:

+ + +

Android 4.4 (API level 19) introduces the Storage Access Framework (SAF). The SAF + makes it simple for users to browse and open documents, images, and other files +across all of their their preferred document storage providers. A standard, easy-to-use UI +lets users browse files and access recents in a consistent way across apps and providers.

+ +

Cloud or local storage services can participate in this ecosystem by implementing a new +{@link android.provider.DocumentsProvider} that encapsulates their services. Client +apps that need access to a provider's documents can integrate with the SAF with just a few +lines of code.

+ +

The SAF includes the following:

-

Some of the features offered by the Storage Access Framework are as follows:

+

Some of the features offered by the SAF are as follows: