我想在Android Nougat的库中打开已保存的图片,但我得到的是一个黑色的图库页面,上面写着“无法加载照片”。
这是我的代码:
清单
<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>
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>
在DrawView中生成的路径
public static boolean save(Bitmap bitmap){
Date now = new Date();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd-MM-yyyy'_'HH:mm");
File folder = new File(Environment.getExternalStorageDirectory() +
File.separator + "Crash");
if (!folder.exists()) {
folder.mkdirs();
}
FileOutputStream fos = null;
try {
lastImagePath = new File(Environment.getExternalStorageDirectory().toString() + "/Crash/" + simpleDateFormat.format(now) + ".jpg");
fos = new FileOutputStream(lastImagePath);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
fos.close();
fos = null;
return true;
} catch (IOException e) {
e.printStackTrace();
return false;
}
finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {}
}
}
}
打开图片监听器
private class OpenImageListener implements View.OnClickListener{
@Override
public void onClick(View v) {
if(Build.VERSION.SDK_INT < Build.VERSION_CODES.N){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + DrawView.getLastImagePath().getAbsolutePath()), "image/*");
startActivity(intent);
} else {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri photoUri = FileProvider.getUriForFile(MainActivity.this, BuildConfig.APPLICATION_ID + ".provider", DrawView.getLastImagePath());
intent.setData(photoUri);
startActivity(intent);
}
}
}
也许我为图像生成了错误的路径,但旧版本可以使用(我在Marshmallow上试过并且效果很好)。
有人能帮助我吗?感谢。
答案 0 :(得分:11)
在else
的{{1}}区块中,在onClick()
上致电setData()
以设置Intent
后,请致电Uri
{ {1}}。
目前,其他应用无权使用addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
标识的内容。添加Intent
可以做到这一点。
这涵盖在the FileProvider
documentation以及有关Android应用开发的现代书籍中。
答案 1 :(得分:0)
对于我尝试过的几乎所有应用程序,我的问题都会出现同样的问题,我的代码与您的代码相同,并且google文档说它看起来是正确的......
我能提供的唯一&#34;解决方案&#34; 是针对版本23(https://source.android.com/source/build-numbers.html)进行编译,以避免文件URI的强制严格模式。 当然,如果您使用它们,还必须降级Android支持库。
如果有人有更好的主意,请分享......
答案 2 :(得分:0)
要从移动模拟画廊查看图像并不困难,但在牛轧糖是完全不同的我已经创建了运行时图像,并希望看到该图像多次失败但最终使用此代码运行
1.经过长时间的努力,我编写了这段代码,不要忘记在mainfest文件中添加fil provider,如你所知。
MimeTypeMap map = MimeTypeMap.getSingleton();
String ext = MimeTypeMap.getFileExtensionFromUrl(file.getName());
String type = map.getMimeTypeFromExtension(ext);
if (type == null)
type = "*/*";
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
// only for gingerbread and newer versions
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri photoUri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file);
intent.setDataAndType(photoUri, type);
intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION|Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent);
}
else{
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri data = Uri.fromFile(file);
intent.setDataAndType(data, type);
context.startActivity(intent);
}