无法显示来自Android Studio中数据库的图像

时间:2019-05-11 03:44:41

标签: android-sqlite

好吧,首先,我将尝试从图库和相机将图像保存到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);
    }

0 个答案:

没有答案