我知道在这个问题上有很多问题。我尝试了大约10种不同的方法,但我无法使其正常工作。我总是得到下一个错误:
java.lang.IllegalArgumentException: Failed to find configured root that contains /file:/storage/emulated/0/Android/data/app.kwork/files/IMG-afbfdc57c016fb1ff7dd983a056edffa-V.jpg
Official tutorial也没有帮助。我将在下面分享我的代码,也许我做错了什么,你知道这里到底出了什么问题......
清单:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="app.kwork.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
provider_paths.xml
<paths>
<files-path path="." name="files" />
</paths>
我将文件保存到:
File futureStudioIconFile = new File(getExternalFilesDir(null) + File.separator + fileName);
文件路径示例:file:///storage/emulated/0/Android/data/app.kwork/files/IMG-afbfdc57c016fb1ff7dd983a056edffa-V.jpg
并尝试与下一个代码共享此文件:
public void openFile(String filePath){
File file = new File(filePath);
Log.d(TAG, "openFile: filePath: " + filePath);
Uri photoURI = FileProvider.getUriForFile(context, "app.kwork.provider", file);
MimeTypeMap myMime = MimeTypeMap.getSingleton();
Intent newIntent = new Intent(Intent.ACTION_VIEW);
String mimeType = myMime.getMimeTypeFromExtension(Utils.fileExt(filePath));
newIntent.setDataAndType(photoURI,mimeType);
newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
newIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
try {
context.startActivity(newIntent);
} catch (ActivityNotFoundException e) {
Toast.makeText(context, "No handler for this type of file.", Toast.LENGTH_LONG).show();
}
}
我在xml中尝试了不同的权限和路径,但我现在就在这里。
UPD:在Android Oreo上进行测试
答案 0 :(得分:1)
根据FileProvider documentation,与<external-files-path>
对应的getExternalFilesDir()
- 您使用的<files-path>
与getFilesDir()
对应。
您必须更改paths.xml
以使用<external-files-path>
或将文件存储在getFilesDir()
。
答案 1 :(得分:0)
文件路径示例:file:///storage/emulated/0/Android/data/app.kwork/files/IMG-afbfdc57c016fb1ff7dd983a056edffa-V.jpg
这不是文件路径。这是Uri
。
文件路径为/storage/emulated/0/Android/data/app.kwork/files/IMG-afbfdc57c016fb1ff7dd983a056edffa-V.jpg
。
不要将Uri
的字符串形式传递给File
构造函数。您最终会遇到格式错误的File
,getUriForFile()
将无法处理格式错误的File
。