I hava a Bitmap variable named bmp in Activity1 , and I want to send the bitmap to Activity2
bmp
Following is the code I use to pass it with the intent.
Bundle b = new Bundle(); b.putSerializable("Image", Bitmap); mIntent.putExtras(b); startActivity(mIntent);