我使用下面的代碼從字符串獲取位圖,但我得到空位圖。所以請指導我。字符串圖像
byte[] Image_getByte = Base64.decode(img);
ByteArrayInputStream bytes = new ByteArrayInputStream(Image_getByte);
BitmapDrawable bmd = new BitmapDrawable(bytes);
Bitmap bitmap=bmd.getBitmap();
Log.v("log","Home bitmap "+bitmap);
i.setImageBitmap(bitmap);
我不知道,但我認爲你應該使用的,而不是構造BitmapFactory.decodeStream。 – vorrtex 2012-03-20 05:50:15