在做项目的过程中发现Bitmap不能被序列化,下面是一种能把bitmap转为字节数组进行传递的过程,记下来,备用。
//第一句是我获得我model里的bitmap
Bitmap bmp=((BitmapDrawable)list.get(position).getAppIcon()).getBitmap();
Intent intent = new Intent(context, AboutFeedBackActivity.class);
ByteArrayOutputStream baos=new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, baos);
byte [] bitmapByte =baos.toByteArray();
时间: 2024-10-23 09:56:32