我使用标准相机意图拍照:
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(takePictureIntent, actionCode);
然后在 onActivityResult ()
中Bundle extras = intent.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
mImageView.setImageBitmap(imageBitmap);
位图是一个缩略图。这很棒 - 我不需要全尺寸图像。
在用户拍照之前,我会显示一个可以单击的默认缩略图,这将打开相机。但是,我不知道缩小默认缩略图的大小。
MediaStore.Images.Thumbnails.MICRO_KIND是96x96。 http://developer.android.com/reference/android/provider/MediaStore.Images.Thumbnails.html 这是默认返回的大小吗?