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

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

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

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

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

  • 对于面向 Android N 的应用,Android 框架执行的 StrictMode,API 禁止向您的应用外公开 file://URI。
    如果一项包含文件 URI 的 Intent 离开您的应用,应用失败,并出现 FileUriExposedException异常。

  • 若要在应用间共享文件,您应发送一项 content://URI,并授予 URI 临时访问权限。
    进行此授权的最简单方式是使用 FileProvider类。 如需有关权限和共享文件的更多信息,
    请参阅共享文件

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

以打开图片裁剪为例:

  • 打开相册编辑页面(伪代码)

     Intent intent = new Intent("com.android.camera.action.CROP");
    
    String path = "/storage/emulated/0/Pictures/Screenshots/img_test.png";
    Uri uri = Uri.parse("file://"+ path); 
    intent.setDataAndType(uri, "image/*");
    
    intent.putExtra("crop", "true");
    intent.putExtra("outputX", 80);
    intent.putExtra("outputY", 80);
    intent.putExtra("return-data", false);
    context.startActivityForResult(intent, 1);
    
图片编辑页面.jpg
  • 在Android N以下版本,上述代码可以正常打开图片裁剪页面,但是在Android N中,这样是无法打开相册编辑页面的。系统会报错,提示相册应用出错,并抛出FileUriExposedException,程序异常退出。

      //部分错误日志:
    
        Process: com.google.android.apps.photos, PID: 24476
                                                     android.os.FileUriExposedException: file:///storage/emulated/0/Pictures/Screenshots/Screenshot_20160809-234958.png exposed beyond app through Intent.getData()
                                                         at android.os.StrictMode.onFileUriExposed(StrictMode.java:1799)
                                                         at android.net.Uri.checkFileUriExposed(Uri.java:2346)
                                                         at android.content.Intent.prepareToLeaveProcess(Intent.java:8933)
                                                         at android.content.Intent.prepareToLeaveProcess(Intent.java:8894)
                                                         at android.app.Instrumentation.execStartActivity(Instrumentation.java:1517)
                                                         at android.app.Activity.startActivityForResult(Activity.java:4223)
                                                         at cx.startActivityForResult(PG:48)
                                                         at de.startActivityForResult(PG:75)
                                                         at udg.startActivityForResult(PG:177)
                                                         at android.app.Activity.startActivityForResult(Activity.java:4182)
    

    手机弹框提示:

相机异常.png
  • 问题就出现在Uri uri = Uri.parse("file://"+ path); 按照Android N的要求,若要在应用间共享文件,您应发送一项 content://URI,并授予 URI 临时访问权限。
    而进行此授权的最简单方式是使用 FileProvider类。(修改后的伪代码在讲述FileProvider的使用时会写)

FileProvider 的使用

  • 官网中关于FileProvider有详细描述,我将主要步骤和使用中应该注意的一些问题大概的说一下。

  • 1.在manifest中添加provider

      <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="cn.lovexiaoai.myapp">
          <application
              ...>
              <provider
                  android:name="android.support.v4.content.FileProvider"
                  android:authorities="cn.lovexiaoai.myapp.fileprovider"
                  android:grantUriPermissions="true"
                  android:exported="false">
                  <meta-data
                      android:name="android.support.FILE_PROVIDER_PATHS"
                      android:resource="@xml/filepaths" />
              </provider>
              ...
          </application>
      </manifest>
    
    //exported:要求必须为false,为true则会报安全异常。
    //grantUriPermissions:true,表示授予 URI 临时访问权限。
    
  • 2.资源文件下创建相应的xml文件(如上:则创建filepaths.xml)。

    <paths>
      <external-path path="images" name="camera_photos" />
    </paths>
    
  • ==注意==

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

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

<external-path path="" name="camera_photos" />
  • 3 FileProvider

      File file = new File("/storage/emulated/0/Pictures/Screenshots/img_test.jpg");
        
      //主要修改就在下面3行
        
        /* getUriForFile(Context context, String authority, File file):此处的authority需要和manifest里面保持一致。
        photoURI打印结果:content://cn.lovexiaoai.myapp.fileprovider/camera_photos/Pictures/Screenshots/testImg.png 。
        这里的camera_photos:对应filepaths.xml中的name
        */
        Uri photoURI = FileProvider.getUriForFile(context, "cn.lovexiaoai.myapp.fileprovider", file);
         
         /* 这句要记得写:这是申请权限,之前因为没有添加这个,打开裁剪页面时,一直提示“无法修改低于50*50像素的图片”,
          开始还以为是图片的问题呢,结果发现是因为没有添加FLAG_GRANT_READ_URI_PERMISSION。
          如果关联了源码,点开FileProvider的getUriForFile()看看(下面有),注释就写着需要添加权限。
          */
        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);  
        intent.setDataAndType(photoURI, "image/*");
        
        intent.setDataAndType(uri, "image/*");
        intent.putExtra("crop", "true");
        intent.putExtra("outputX", 80);
        intent.putExtra("outputY", 80);
        intent.putExtra("return-data", false);
        context.startActivityForResult(intent, 1);
    

下面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);
        }
  • 关于FileProvider我也是现学现用,如果有什么不对的地方,还望大家指正~
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容