Using bundle you can pass your image to seconfd activity like this :
intent = new Intent(this, Second.class);
bundle = new Bundle();
bundle.putString("imageurl", "your image string");
intent.putExtras(bundle);
startActivity(intent);
and in second activity:
bundle = new Bundle();
bundle = getIntent().getExtras();
imageurl_of_event = bundle.getString("imageurl");
and for displaying image:
HttpURLConnection conn;
try {
URL feedImage = new URL(imageurl_of_event);
conn = (HttpURLConnection) feedImage.openConnection();
InputStream is = conn.getInputStream();
Bitmap img = BitmapFactory.decodeStream(is);
event_imageview.setImageBitmap(img);
}catch.....
thats it