在我的应用中,我从服务器获取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
。那可能是什么问题?