Android FileProvider使用教程

Android基础--FileProvider

Android 7.0之前,文件的Uri以file:///形式提供给其他app访问。

Android 7.0之后,为了安全起见,file:///形式的Uri不能正常访问,官方提 供了FileProvider,FileProvider生成的Uri会以content://的形式分享给其他app使用。

那如何使用FileProvider?

在manifest 中声明provider

	
            
	
  • authorities:相当于一个用于认证的暗号,在分享文件生成Uri时,会通过它的值生成对应的Uri。
  • exported:的值为false,表示该FileProvider只能本应用使用
  • meta-data:别的配置信息
  • grantUriPermissions:让接收端的app临时有权限进行操作了。

设置共享目录



  
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  

最终生成的代码效果

以第二个为例:
content://com.flx.cn.fileprovider/my_files/filexxx.jpg

生成Content Uri文件,供其他app使用

File filePath = new File(Context.getFilesDir(), "my_log");
File newFile = new File(filePath, "my_log.log");
// 生成Uri
Uri contentUri = FileProvider.getUriForFile(getContext(), "com.flx.cn.fileprovider", newFile);

授权,一般就读取和写入2种权限,并分享

// 这里用的是发送文件。
Intent intent = new Intent(Intent.ACTION_SEND);
// 设置读写权限
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
//Uri传入Intent
intent.putExtra(Intent.EXTRA_STREAM, contentUri);
startActivity(intent)

到此这篇关于Android FileProvider使用教程的文章就介绍到这了,更多相关Android FileProvider内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Android FileProvider使用教程)