好吧,首先,我将尝试从图库和相机将图像保存到android studio中的SQ Lite数据库中。它已经完成了,但是现在我的问题是我无法在数据库的活动中显示图像。我要编辑和更新图像。
private void productedit() {
if (GlobalUtils.selectproduct == null)
return;
fullname.setText(GlobalUtils.selectproduct.getProduct_name());
// brand.setText(GlobalUtils.selectproduct.getProduct_brand());
// purchaseprice.setText(GlobalUtils.selectproduct.getProduct_purchase_price().toString());
// unitprice.setText(String.valueOf(GlobalUtils.selectproduct.getProduct_unit()));
salesprice.setText(GlobalUtils.selectproduct.getProduct_sales_price().toString());
byte[] blob = data.getBlob(data.getColumnIndex(data.IMAGE));
ByteArrayInputStream inputStream = new ByteArrayInputStream(blob);
Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
}