我将摄像头捕获的图像保存到数据库并从数据库中检索它。我再次捕获它并在图像视图上显示,因此当前图像显示在我的Android操作系统版本4.1 ..
同样,对于拥有OS版本4.2的三星核心不起作用。
请提出任何解决方案,因为这是操作系统问题或其他问题
点击按钮
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, 0);
在imageview上设置图片,
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 0 && resultCode == RESULT_OK) {
if (data != null) {
photo = (Bitmap) data.getExtras().get("data");
Log.d("camera ---- > ", "" + data.getExtras().get("data"));
img.setImageBitmap(photo);
}
}
}
保存到sqlite数据库,
ByteArrayOutputStream baos = new ByteArrayOutputStream();
photo.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] byteArray = baos.toByteArray();
parent.setImage(byteArray);
从数据库中检索并显示它..
ByteArrayInputStream imageStream = new ByteArrayInputStream(outImage);
Bitmap theImage = BitmapFactory.decodeStream(imageStream);
img.setImageBitmap(theImage);