我正在尝试通过以下方式使用 MediaStore.ACTION_IMAGE_CAPTURE 意图拍照:
String fileName = "testphoto.jpg";
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, fileName);
values.put(MediaStore.Images.Media.DESCRIPTION,
"Image capture by camera");
values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg");
imageUri = getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, values);
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE)
.putExtra(MediaStore.EXTRA_OUTPUT,
MediaStore.Images.Media.EXTERNAL_CONTENT_URI),
R.id.capture_image_request);
处理活动结果:
try {
uploadedPicture = BitmapFactory.decodeStream(getContentResolver()
.openInputStream(imageUri));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
之后,我试图展示刚刚拍摄的图像:
((ImageView) findViewById(R.id.profile_picture_thumbnail)).setImageBitmap(uploadedPicture);
那是行不通的。之后,我尝试从该 Uri 打开一个输入流:
final InputStream is = getContentResolver().openInputStream(uri);
Log.("mydebug tag", is.available());
is.available() 返回 0。为什么那个文件是空的???
当我尝试调试时,我发现像“content://media/external/images/media/68”这样的 Uri 已经返回。之后我硬编码:
Uri uri = Uri.parse("content://media/external/images/media/68");
Bitmap pic;
try {
pic = BitmapFactory.decodeStream(getContentResolver().openInputStream(uri));
((ImageView) findViewById(R.id.profile_picture_thumbnail)).setImageBitmap(pic);
} catch (FileNotFoundException e) {
Log.e(TAG, e.getMessage());
}
这奏效了。
所以我想知道为什么当我手动构建 Uri 时 - 它可以工作,但是当我收到刚刚拍摄的照片的 Uri 时 - 它没有?我有一种感觉,当我访问刚刚拍摄的图片的 Uri 时,它还没有存储在文件系统中,这就是它的大小等于 0 并且无法加载到 ImageView 中的原因。但是过了一段时间(当我再次运行我的应用程序,使用硬编码的 Uri 时)文件被存储并且工作正常。有没有办法将该文件强制刷新到磁盘?