Android10共享文件总是读取不到文件,文件资源不存在!

1、Android共享文件

坑:共享的文件不能在软件数据文件夹,否则就会获取不了

//首先最前面加入此三行,否则会闪退
StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.setVmPolicy(builder.build());
builder.detectFileUriExposure();
//分享文件
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
//设置intent的data和Type属性。
intent.setType("*/*");	//设置为所有文件
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(path))); // 必须添加这一句,否则找不到资源
getContext().startActivity(intent);

注意:path路径来自sd卡文件,否则会读取不到文件。

文件来源:

解决:

Environment.getExternalStorageDirectory().getPath()

使用sd卡目录获取文件

你可能感兴趣的:(Android共享,Android共享文件,android,studio)