Example usage for android.provider DocumentsProvider subclass-usage

List of usage examples for android.provider DocumentsProvider subclass-usage

Introduction

In this page you can find the example usage for android.provider DocumentsProvider subclass-usage.

Usage

From source file com.raspi.chatapp.util.storage.file.LocalStorageProvider.java

public class LocalStorageProvider extends DocumentsProvider {
    /**
     * Authority that matches the authority in the AndroidManifest.xml for LocalStorageProvider
     */
    public final static String AUTHORITY = "com.ianhanniballake.localstorage.documents";
    /**

From source file org.sufficientlysecure.privacybox.VaultProvider.java

/**
 * Provider that encrypts both metadata and contents of documents stored inside.
 * Each document is stored as described by {@link EncryptedDocument} with
 * separate metadata and content sections. Directories are just
 * {@link EncryptedDocument} instances without a content section, and a list of
 * child documents included in the metadata section.

From source file com.example.android.vault.VaultProvider.java

/**
 * Provider that encrypts both metadata and contents of documents stored inside.
 * Each document is stored as described by {@link EncryptedDocument} with
 * separate metadata and content sections. Directories are just
 * {@link EncryptedDocument} instances without a content section, and a list of
 * child documents included in the metadata section.

From source file com.seafile.seadroid2.provider.SeafileProvider.java

/**
 * DocumentProvider for the Storage Access Framework.
 *
 * It depends on API level 19 and supports API level 21.
 *
 * This Provider gives access to other Apps to browse, read and write all files

From source file org.alfresco.mobile.android.application.providers.storage.StorageAccessDocumentsProvider.java

@TargetApi(Build.VERSION_CODES.KITKAT)
public class StorageAccessDocumentsProvider extends DocumentsProvider implements AlfrescoContentProvider {
    // //////////////////////////////////////////////////////////////////////
    // CONSTANTS
    // //////////////////////////////////////////////////////////////////////
    private static final String TAG = StorageAccessDocumentsProvider.class.getSimpleName();