当我尝试使用意图在图库中打开图像(我正在开发文件管理器)时,显示的图像完全是黑色的。但是我无法理解为什么,因为我'我还遵循谷歌关于获取Uri的最后一些最佳做法(使用FileProvider)。
MainActivity.java
Intent intent=new Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri uri=FileProvider.getUriForFile(MainActivity.this,BuildConfig.APPLICATION_ID + ".provider",image);
intent.setDataAndType(uri,MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileName));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
的AndroidManifest.xml
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>
provider_paths.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>
答案 0 :(得分:10)
变化:
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
为:
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_GRANT_READ_URI_PERMISSION);
现在,另一个应用无权查看Uri
标识的图片。