I am trying to pass an image which is from the mobile media. I am able to get the image from the media but I need to send that image to the next activity. How can I send tha
You can use like:
I suppose that: send image to Activity B from A
Actvity: A
Intent i = new Intent(A.this,B.class);
i.putExtra("image_send",bitmap)
//with bitmap is image that you want to send.
startActivity(i);
Activity B:
//receive image
Bitmap b = (Bitmap) getIntent().ParcelableExtra("image_send")