Searched refs:FileProvider (Results 1 – 12 of 12) sorted by relevance
/frameworks/base/docs/html/training/secure-file-sharing/ |
D | setup-sharing.jd | 12 <li><a href="#DefineProvider">Specify the FileProvider</a></li> 28 {@link android.support.v4.content.FileProvider} component generates content URIs for 30 implementation of {@link android.support.v4.content.FileProvider} to your app, and how to 35 <strong>Note:</strong> The {@link android.support.v4.content.FileProvider} class is part of the 41 <h2 id="DefineProvider">Specify the FileProvider</h2> 43 Defining a {@link android.support.v4.content.FileProvider} for your app requires an entry in 51 {@link android.support.v4.content.FileProvider} class, the authority, and the 60 android:name="android.support.v4.content.FileProvider" 75 {@link android.support.v4.content.FileProvider}. 96 Once you have added the {@link android.support.v4.content.FileProvider} to your app manifest, [all …]
|
D | index.jd | 2 page.tags=FileProvider,share,ContentProvider 40 {@link android.support.v4.content.FileProvider} component provides the method 41 {@link android.support.v4.content.FileProvider#getUriForFile getUriForFile()} for 52 generated by the Android {@link android.support.v4.content.FileProvider} component and 76 {@link android.support.v4.content.FileProvider} to retrieve file information including
|
D | retrieve-info.jd | 34 {@link android.support.v4.content.FileProvider} to retrieve a file's MIME type and size. 42 {@link android.support.v4.content.FileProvider} determines the file's MIME type from its 61 The {@link android.support.v4.content.FileProvider} class has a default implementation of the 62 {@link android.support.v4.content.FileProvider#query query()} method that returns the 81 of the arguments of {@link android.support.v4.content.FileProvider#query query()} to
|
D | share-file.jd | 146 {@link android.support.v4.content.FileProvider#getUriForFile getUriForFile()}, along with the 149 ><provider></a></code> element for the {@link android.support.v4.content.FileProvider}. 152 extension. How {@link android.support.v4.content.FileProvider} maps directories to path 184 // Use the FileProvider to get a content URI 186 fileUri = FileProvider.getUriForFile( 205 {@link android.support.v4.content.FileProvider#getUriForFile getUriForFile()} for a
|
/frameworks/support/tests/java/android/support/v4/content/ |
D | FileProviderTest.java | 26 import android.support.v4.content.FileProvider.SimplePathStrategy; 292 actual = FileProvider.getUriForFile(mContext, TEST_AUTHORITY, in testMetaDataTargets() 296 actual = FileProvider.getUriForFile(mContext, TEST_AUTHORITY, in testMetaDataTargets() 300 actual = FileProvider.getUriForFile(mContext, TEST_AUTHORITY, in testMetaDataTargets() 304 actual = FileProvider.getUriForFile(mContext, TEST_AUTHORITY, in testMetaDataTargets() 308 actual = FileProvider.getUriForFile(mContext, TEST_AUTHORITY, in testMetaDataTargets() 312 actual = FileProvider.getUriForFile(mContext, TEST_AUTHORITY, in testMetaDataTargets() 337 return FileProvider.getUriForFile(mContext, TEST_AUTHORITY, file); in stageFileAndGetUri()
|
/frameworks/base/packages/Shell/src/com/android/shell/ |
D | BugreportReceiver.java | 34 import android.support.v4.content.FileProvider; 73 final Uri bugreportUri = FileProvider.getUriForFile(context, AUTHORITY, bugreportFile); in onReceive() 74 final Uri screenshotUri = FileProvider.getUriForFile(context, AUTHORITY, screenshotFile); in onReceive()
|
/frameworks/base/docs/html/training/beam-files/ |
D | send-files.jd | 55 {@link android.support.v4.content.FileProvider#getUriForFile FileProvider.getUriForFile}.
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | FileProvider.java | 302 public class FileProvider extends ContentProvider { class
|
/frameworks/base/docs/html/training/sharing/ |
D | send.jd | 145 {@link android.support.v4.content.FileProvider} helper class.</li>
|
/frameworks/base/docs/html/tools/support-library/ |
D | features.jd | 121 <li>{@link android.support.v4.content.FileProvider} - Adds support for sharing of private
|
D | index.jd | 417 <li>Added {@link android.support.v4.content.FileProvider} to allow sharing of private
|
/frameworks/base/docs/html/about/versions/ |
D | jelly-bean.jd | 600 apps, try using the <code>FileProvider</code> content provider that’s available
|