Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
static final int SELECT_PICTURE = 1
Intent galleryIntent = new Intent(Intent.ACTION_PICK);
galleryIntent.setType("image/*");
startActivityForResult(Intent.createChooser(galleryIntent, "Select Picture"), SELECT_PICTURE);