文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android 7.0中拍照和图片裁剪适配的问题详解

2022-06-06 04:28

关注

前言

Android 7.0系统发布后,拿到能升级的nexus 6P,就开始了7.0的适配。发现在Android 7.0以上,在相机拍照和图片裁剪上,可能会碰到以下一些错误:


Process: com.yuyh.imgsel, PID: 22995
// 错误1
android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.yuyh.imgsel/cache/1486438962645.jpg exposed beyond app through ClipData.Item.getUri()
// 错误2
android.os.FileUriExposedException: file:///storage/emulated/0/DCIM/RxGalleryFinal/IMG_20161018180127.jpg exposed beyond app through Intent.getData()

主要是由于在Android 7.0以后,用了Content Uri 替换了原本的File Uri,故在

targetSdkVersion=24
的时候,部分 “`
Uri.fromFile()
“` 方法就不适用了。 **File Uri 与 Content Uri 的区别** - File Uri 对应的是文件本身的存储路径 - Content Uri 对应的是文件在Content Provider的路径 所以在android 7.0 以上,我们就需要将File Uri转换为 Content Uri。

具体转换方法如下:



public Uri getImageContentUri(File imageFile) {
 String filePath = imageFile.getAbsolutePath();
 Cursor cursor = getContentResolver().query(
   MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
   new String[] { MediaStore.Images.Media._ID },
   MediaStore.Images.Media.DATA + "=? ",
   new String[] { filePath }, null);
 if (cursor != null && cursor.moveToFirst()) {
  int id = cursor.getInt(cursor
    .getColumnIndex(MediaStore.MediaColumns._ID));
  Uri baseUri = Uri.parse("content://media/external/images/media");
  return Uri.withAppendedPath(baseUri, "" + id);
 } else {
  if (imageFile.exists()) {
   ContentValues values = new ContentValues();
   values.put(MediaStore.Images.Media.DATA, filePath);
   return getContentResolver().insert(
     MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
  } else {
   return null;
  }
 }
}

那么,我们在裁剪的时候,应该如下调用:


private void crop(String imagePath) {
 File file = new File("xxx.jpg");
 cropImagePath = file.getAbsolutePath();
 Intent intent = new Intent("com.android.camera.action.CROP");
 intent.setDataAndType(getImageContentUri(new File(imagePath)), "image/*");
 intent.putExtra("crop", "true");
 intent.putExtra("aspectX", config.aspectX);
 intent.putExtra("aspectY", config.aspectY);
 intent.putExtra("outputX", config.outputX);
 intent.putExtra("outputY", config.outputY);
 intent.putExtra("scale", true);
 intent.putExtra("return-data", false);
 intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
 intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
 intent.putExtra("noFaceDetection", true);
 startActivityForResult(intent, IMAGE_CROP_CODE);
}

这样就解决了裁剪的问题,但是!!拍照的时候就会出现以下错误:


Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (cameraIntent.resolveActivity(getActivity().getPackageManager()) != null) {
 tempFile = new File(FileUtils.createRootPath(getActivity()) + "/" + System.currentTimeMillis() + ".jpg");
 LogUtils.e(tempFile.getAbsolutePath());
 FileUtils.createFile(tempFile);
 cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(tempFile));
 startActivityForResult(cameraIntent, REQUEST_CAMERA);
}

android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.yuyh.imgsel/cache/1486438962645.jpg exposed beyond app through ClipData.Item.getUri()

这是因为拍照存储的文件,也需要以Content Uri的形式,故采用以下办法解决:

Step.1

修改AndroidManifest.xml


<application
 ...>
 <provider
  android:name="android.support.v4.content.FileProvider"
  android:authorities="{替换为你的包名}.provider"
  android:exported="false"
  android:grantUriPermissions="true">
  <meta-data
   android:name="android.support.FILE_PROVIDER_PATHS"
   android:resource="@xml/provider_paths"/>
 </provider>
</application>

Step.2

在res/xml/下新建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>

Step.3

修改拍照时的参数


cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, FileProvider.getUriForFile(getActivity(),BuildConfig.APPLICATION_ID + ".provider", tempFile)); //Uri.fromFile(tempFile)

总结

好了,以上就是这篇文章的全部内容了,希望本文的内容对各位Android开发者们能带来一定的帮助,如果有疑问大家可以留言交流。

您可能感兴趣的文章:Android实现拍照及图片裁剪(6.0以上权限处理及7.0以上文件管理)Android编程实现调用系统图库与裁剪图片功能Android图片裁剪功能实现代码Android实现拍照、选择图片并裁剪图片功能Android实现从本地图库/相机拍照后裁剪图片并设置头像解决Android从相册中获取图片出错图片却无法裁剪问题的方法Android 裁剪人脸类的实例代码


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯