Skip to content

Instantly share code, notes, and snippets.

@seungwoonlee
Last active December 12, 2015 09:39
Show Gist options
  • Save seungwoonlee/4752856 to your computer and use it in GitHub Desktop.
Save seungwoonlee/4752856 to your computer and use it in GitHub Desktop.
Android Gallery Image Selector
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
intent.setData(android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intent, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment