Skip to content

Instantly share code, notes, and snippets.

@djodjoni
Created August 3, 2015 14:56
Show Gist options
  • Save djodjoni/5af0812c9f2eb2fefe08 to your computer and use it in GitHub Desktop.
Save djodjoni/5af0812c9f2eb2fefe08 to your computer and use it in GitHub Desktop.
Intent intent = new Intent(Intent.ACTION_CREATE_DOCUMENT)
.addCategory(Intent.CATEGORY_OPENABLE)
.setType("image/jpeg")
.putExtra(Intent.EXTRA_TITLE, "Image");
startActivityForResult(intent, 555);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment