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
Bitmap implements Parcelable interface. So to pass it use
Bitmap
Parcelable
intent.putExtra("bitmap", bitmap);
and to retrieve it use:
Bitmap bitmap = (Bitmap) intent.getParcelableExtra("bitmap");
and use ImageView.setImageBitmap().
EDIT: see Receiving Content from Other Apps