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