无法显示字节数组中的图像

时间:2014-04-22 21:09:01

标签: android

在我的应用中,我从服务器获取byte[],我需要在imageview上显示 所以我写了这段代码:

byte[] im = allUsers.get(i).getPhoto().getBytes();
Bitmap bmp = BitmapFactory.decodeByteArray(im, 0, im.length);
((ImageView) dialog.findViewById(R.id.image)).setImageBitmap(bmp);

bmp总是null。那可能是什么问题?

0 个答案:

没有答案