How to display an Image received from an \"android.intent.action.SEND\" in an imageview? The user selects my app from the list of apps to share an imag
\"android.intent.action.SEND\"
imageview
Try this
BitMap thumnail= (Bitmap) getIntent().getExtras().getParcelable("data"); yourImageViewId.setImageBitmap(receiptimage);
Hope it helps