I am using two activities. One activity displays images in a GridView and by clicking on a particular image in that GridView it should display the
GridView
You pass parameters to an Activity in an Intent. If the image comes from a file, pass the path String, otherwise pass the Bitmap
startActivity(new Intent(this, YourActivity.class).putExtras(new Bundle().putParcelable("bitmap", Bitmap)))