从base64.decode创建imageview

时间:2011-03-26 09:19:40

标签: java android image base64

我有这个问题:我希望代表一个base64字符串来自我的android应用程序中的php页面(字符串base64工作正常并且很好)所以我这样做了:

byte[] gzipBuff = Base64.decode(json_data.getString("immagine"),0);
ByteArrayInputStream memstream = new ByteArrayInputStream(gzipBuff, 0, gzipBuff.length);
ByteArrayOutputStream baos = new ByteArrayOutputStream(gzipBuff.length);
baos.write(gzipBuff);

Bitmap bmp = BitmapFactory.decodeStream(memstream);
ImageView image = new ImageView(this);
image.setImageBitmap(bmp);

我没有看到imageview

1 个答案:

答案 0 :(得分:1)

快速Google搜索会将您的其他重复问题视为第一个结果,this作为第二个结果。请参阅该问题的accepted答案。