Код: Выделить всё
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), SELECT_PICTURE);
Подробнее здесь: https://stackoverflow.com/questions/319 ... vityresult