前言
AndroID 7.0系统发布后,拿到能升级的nexus 6P,就开始了7.0的适配。发现在AndroID 7.0以上,在相机拍照和图片裁剪上,可能会碰到以下一些错误:
Process: com.yuyh.imgsel,PID: 22995// 错误1androID.os.fileUrIExposedException: file:///storage/emulated/0/AndroID/data/com.yuyh.imgsel/cache/1486438962645.jpg exposed beyond app through ClipData.Item.getUri()// 错误2androID.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。
具体转换方法如下:
/** * 转换 content:// uri * * @param imagefile * @return */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 7.0中拍照和图片裁剪适配的问题详解全部内容,希望文章能够帮你解决Android 7.0中拍照和图片裁剪适配的问题详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)