技术专栏
Android 调用相机闪退问题
背景:
在安卓7.0手机上,调用系统相机拍照,结果出现闪退。
- 1
原因:
Android7.0中为了提高私有文件的安全性,禁止向你的应用外公开 file:// URI。 如果一项包含文件 file:// URI类型 的 Intent 离开你的应用,应用失败,并出现 FileUriExposedException 异常。
- 1
解决方案:
public void openCamera() {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageUri = getImageUri();
intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
startActivityForResult(intent, PHOTO_REQUEST_CAMERA);
}
public Uri getImageUri() {
File file = new File(Environment.getExternalStorageDirectory(), "/temp/" + System.currentTimeMillis() + ".jpg");
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
String path = file.getPath();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
imageUri = Uri.fromFile(file);
} else {
//兼容android7.0 使用共享文件的形式
ContentValues contentValues = new ContentValues(1);
contentValues.put(MediaStore.Images.Media.DATA, path);
imageUri = this.getApplication().getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues);
}
return imageUri;
}
转载自:https://blog.csdn.net/yinxing2008/article/details/82792582
** 推荐阅读:**
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
<
声明:本文内容由易百纳平台入驻作者撰写,文章观点仅代表作者本人,不代表易百纳立场。如有内容侵权或者其他问题,请联系本站进行删除。
红包
点赞
收藏
评论
打赏
- 分享
- 举报
评论
0个
手气红包

相关专栏
-
浏览量:12999次2023-04-06 09:23:10
-
浏览量:4398次2021-08-26 14:50:36
-
浏览量:1045次2023-04-19 09:12:44
-
浏览量:3646次2019-06-25 13:58:23
-
浏览量:900次2024-01-22 16:42:18
-
浏览量:1537次2023-06-02 17:41:13
-
浏览量:1489次2019-11-21 14:20:37
-
浏览量:1757次2019-11-08 09:10:49
-
浏览量:2448次2017-12-13 11:43:56
-
浏览量:1018次2023-06-03 16:03:15
-
浏览量:1548次2019-11-15 17:14:59
-
浏览量:1435次2023-11-18 14:19:47
-
浏览量:1948次2018-01-18 19:38:12
-
浏览量:5349次2021-09-15 13:50:22
-
浏览量:4630次2021-07-09 13:40:09
-
浏览量:5769次2021-09-24 11:26:53
-
浏览量:937次2023-08-30 10:00:35
-
浏览量:1906次2020-02-29 09:07:58
-
2023-12-11 10:52:14
置顶时间设置
结束时间
删除原因
-
广告/SPAM
-
恶意灌水
-
违规内容
-
文不对题
-
重复发帖
打赏作者
TT_123456789
您的支持将鼓励我继续创作!
打赏金额:
¥1

¥5

¥10

¥50

¥100

支付方式:

举报反馈
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
审核成功
发布时间设置
发布时间:
请选择发布时间设置
是否关联周任务-专栏模块
审核失败
失败原因
请选择失败原因
备注
请输入备注