a picture and return to our app Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); // pass in location where we want the image to be saved intent.putExtra(MediaStore.EXTRA_OUTPUT, uriToSaveImage); // Start the image capture intent to take photo startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE); }