Android Intent 传参 - Bitmap
如果要使用 Intent
来传递图片 (Bitmap) ,因为 Bitmap
默认实现了 Parcelable
接口,直接传递即可
Bitmap bitmap = null; Intent intent = new Intent(); Bundle bundle = new Bundle(); bundle.putParcelable("bitmap", bitmap); intent.putExtra("bundle", bundle);
这里就用 demo 演示了,其实就是设置一下 Bundle