android开发杂识AndroidAndroid

Android7.0须知--应用间共享文件(FileProvid

2016-08-11  本文已影响46863人  笑笑百味人生

我的博客
我的博客:Android7.0须知--应用间共享文件(FileProvider)

Android N已经出了好几个预览版了,正式版即将到来,为了迎接Android N的到来,我们接到任务,需要测试并解决我们的应用在7.0上面的适配问题和其他bug 。

测试的时候,发现了一些bug,其中一个bug,就是在打开相册编辑页时,程序会异常退出。

经过排查,发现应用崩溃前,报出FileUriExposedException异常,官网上搜索,发现在Android N的behavior-changes里面,有一些关于 FileUriExposedException 异常的描述:

也就是说,对于应用间共享文件这块,Android N中做了强制性要求

以打开图片裁剪为例:

图片编辑页面.jpg 相机异常.png

FileProvider 的使用

这个联合起来的意思就是:可以访问外部存储目录下,images文件夹下的文件。
就是说,我可以将这个文件夹下(以我的测试机为例:/storage/emulated/0/images)的所有文件传递给图片编辑页面。
但是,因为有很多时候,图片来源不确定,而且每款手机的相册所在的文件名称也可能不一样,如果一一添加的话,很麻烦,而且容易遗漏,这里,我用了一个简单的方法,很方便。代码如下,这样的话,我可以传递外部存储设备根目录下的任意一张图片了(包括其子目录)

<external-path path="" name="camera_photos" />

下面FileProvider的getUriForFile()方法的注释:

     /** 
         * Return a content URI for a given {@link File}. Specific temporary
         * permissions for the content URI can be set with
         * {@link Context#grantUriPermission(String, Uri, int)}, or added
         * to an {@link Intent} by calling {@link Intent#setData(Uri) setData()} and then
         * {@link Intent#setFlags(int) setFlags()}; in both cases, the applicable flags are
         * {@link Intent#FLAG_GRANT_READ_URI_PERMISSION} and
         * {@link Intent#FLAG_GRANT_WRITE_URI_PERMISSION}. A FileProvider can only return a
         * <code>content</code> {@link Uri} for file paths defined in their <code><paths></code>
         * meta-data element. See the Class Overview for more information.
         *
         * @param context A {@link Context} for the current component.
         * @param authority The authority of a {@link FileProvider} defined in a
         *            {@code <provider>} element in your app's manifest.
         * @param file A {@link File} pointing to the filename for which you want a
         * <code>content</code> {@link Uri}.
         * @return A content URI for the file.
         * @throws IllegalArgumentException When the given {@link File} is outside
         * the paths supported by the provider.
         */
        public static Uri getUriForFile(Context context, String authority, File file) {
            final PathStrategy strategy = getPathStrategy(context, authority);
            return strategy.getUriForFile(file);
        }
上一篇 下一篇

猜你喜欢

热点阅读