In my app i am displaying no.of images from gallery from where as soon as I select one image , the image should be sent to the new activity where the selected image will be
Using this you can pass bitmap to another activity.
If you are using drawable than convert that drawable to bitmap first.
Bitmap bitmap = ((BitmapDrawable)d).getBitmap();
For passing that bitmap to another activity using intent use this below code snippet.
intent.putExtra("Bitmap", bitmap);
And for fetch that bitmap intent in another activity use this
Bitmap bitmap = (Bitmap)this.getIntent().getParcelableExtra("Bitmap");
Follow this Link for More Detail.