How to set image in second Activity from first Activity?Please I have a serious Problem with it.Help me for this.
Edit (this has been copied from the comment):
First Activity code for Intent put Extra:
in.putExtra("image", marraylist_image.get(arg2).toString()); 
Second Activity code for Set image in imageview
image = mbundle.getString("image"); 
Bitmap bmp = BitmapFactory.decodeFile(image); 
System.out.println("Image Value:--" + bmp); 
img.setImageBitmap(bmp);
 
     
     
     
    