ImageView img1;
    img1 = (ImageView) findViewById (R.id.img1);

        URL newurl = new URL("http://10.0.2.2:80/Gallardo/Practice/files/images/donut.jpg");
        Bitmap mIcon_val = BitmapFactory.decodeStream(newurl.openConnection() .getInputStream());
        img1.setImageBitmap(mIcon_val);


我从url获取图像,但想将其存储到我的可绘制对象中,怎么办?

最佳答案

apk中的所有内容均为只读。
所以你不能写到drawable。

您必须使用“斑点”来存储图像。

例如:将图像存储到数据库中

public void insertImg(int id , Bitmap img ) {


    byte[] data = getBitmapAsByteArray(img); // this is a function

    insertStatement_logo.bindLong(1, id);
    insertStatement_logo.bindBlob(2, data);

    insertStatement_logo.executeInsert();
    insertStatement_logo.clearBindings() ;

}

 public static byte[] getBitmapAsByteArray(Bitmap bitmap) {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    bitmap.compress(CompressFormat.PNG, 0, outputStream);
    return outputStream.toByteArray();
}


从数据库检索图像

public Bitmap getImage(int i){

    String qu = "select img  from table where feedid=" + i ;
    Cursor cur = db.rawQuery(qu, null);

    if (cur.moveToFirst()){
        byte[] imgByte = cur.getBlob(0);
        cur.close();
        return BitmapFactory.decodeByteArray(imgByte, 0, imgByte.length);
    }
    if (cur != null && !cur.isClosed()) {
        cur.close();
    }

    return null ;
}


您还可以检查此saving image to database

09-10 17:08