我正在尝试使用 IMAGE_CAPTURE 意图拍照并立即在屏幕上显示这张照片。我所做的:
File photoFile = createImageFile();
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile));
startActivityForResult(intent, REQUEST_CAMERA);
创建图像文件方法:
private File createImageFile() {
File dir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File photoFile = null;
try {
photoFile = File.createTempFile("photo", ".jpg", dir);
mPhotoPath = photoFile.getAbsolutePath();
} catch (IOException e) {
e.printStackTrace();
}
return photoFile;
}
当onActivityResult
被调用时,我执行:
Bitmap photo = BitmapFactory.decodeFile(mPhotoPath);
mPhoto.setImageBitmap(photo);
这是一个问题。显然 IMAGE_CAPTURE 活动将图像保存到后台文件中,并且我在保存图像之前onActivityResult
执行。正因为如此,我的. 虽然如果我在调用之前放置断点它会起作用。我用一个丑陋的黑客修复了它:photo == null
BitmapFactory.decodeFile
while (photo == null) {
photo = BitmapFactory.decodeFile(mPhotoPath);
}
那么,我做错了吗?为什么它会这样工作?
我正在 Marshmallow Nexus 5 上进行测试。