Skip to content

Instantly share code, notes, and snippets.

@zurche
Created February 13, 2017 18:06
Show Gist options
  • Save zurche/627b8715b16af91b7815a44df749f259 to your computer and use it in GitHub Desktop.
Save zurche/627b8715b16af91b7815a44df749f259 to your computer and use it in GitHub Desktop.
This is how you take a picture in android
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment