Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bunjix
Last active January 9, 2020 10:28
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save bunjix/7bcf36633e11f787215e to your computer and use it in GitHub Desktop.
Save bunjix/7bcf36633e11f787215e to your computer and use it in GitHub Desktop.
Pick an image on Android
private static final int PICK_PHOTO_FOR_AVATAR = 0;
public void pickImage() {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, PICK_PHOTO_FOR_AVATAR);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == PICK_PHOTO_FOR_AVATAR && resultCode == Activity.RESULT_OK) {
if (data == null) {
//Display an error
return;
}
InputStream inputStream = context.getContentResolver().openInputStream(data.getData());
//Now you can do whatever you want with your inpustream, save it as file, upload to a server, decode a bitmap...
}
}
@juanjosv
Copy link

Better:
try {
InputStream inputStream = getContext().getContentResolver().openInputStream(data.getData());
} catch (FileNotFoundException e) {
e.printStackTrace();
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment