gpt4 book ai didi

android - 使用 Android Nougat 在图库中打开图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:36:24 24 4
gpt4 key购买 nike

我想在 Android Nougat 上打开图库中保存的图片,但我得到的是一个黑色的图库页面,上面有消息“无法加载照片”。

这是我的代码:

list

    <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 并且效果很好)。

有人可以帮助我吗?谢谢。

最佳答案

onClick()else block 中,在对 Intent 调用 setData() 之后设置Uri,在 Intent 上调用 addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)

就目前而言,其他应用无权使用 Uri 标识的内容。添加 FLAG_GRANT_READ_URI_PERMISSION 可以做到这一点。

这包含在 the FileProvider documentation 中,以及有关 Android 应用程序开发的现代书籍。

关于android - 使用 Android Nougat 在图库中打开图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42703341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com