To get an image from the standard gallery, you can:
private static final int MEDIA_IMAGE_REQUEST_CODE = 203948;
Then, to get the image as soon as the user selects one of them:
protected final void onActivityResult(final int requestCode, final int resultCode, final Intent i) { super.onActivityResult(requestCode, resultCode, i); if(resultCode == RESULT_OK) { switch(requestCode) { case MEDIA_IMAGE_REQUEST_CODE:
source share