Skip to content

Instantly share code, notes, and snippets.

@sreejithraman
Last active March 18, 2017 01:01
Show Gist options
  • Save sreejithraman/075b49427c69ab775d36b092a86d410a to your computer and use it in GitHub Desktop.
Save sreejithraman/075b49427c69ab775d36b092a86d410a to your computer and use it in GitHub Desktop.
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) { // note that data will be null
if (resultCode == Activity.RESULT_OK) {
if (requestCode == REQUEST_CODE_CAMERA) {
// imageFile will have the photo in it so do whatever you want with it
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment