Skip to content

Instantly share code, notes, and snippets.

@masarugen
Created August 14, 2012 08:51
Show Gist options
  • Save masarugen/3347612 to your computer and use it in GitHub Desktop.
Save masarugen/3347612 to your computer and use it in GitHub Desktop.
mImageUri = getPhotoUri();
Intent intent = new Intent();
intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.putExtra(MediaStore.EXTRA_OUTPUT, mImageUri);
startActivityForResult(intent, IMAGE_CAPTURE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment