I have this code:
startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), CAMERA_IMAGE);
That allows that user to take a photo. Now
Uri uri = null; if(requestCode == GALLERY_INTENT && resultCode == RESULT_OK){ uri = data.getData(); }