tedhill13 Ответов: 0

Как обойти отображение папок и перейти прямо к отображению фотографий с помощью класса INTENT android?


I want my app to list/display only the phone's photos ( nothing else ) so that the user could select one of them whose bitmap will then be dealt later on by my remaining code.

The problem is that the code below instead of displaying photos directly, it first displays TWO FOLDERS ( Photos and Camera ) where photos are stored/grouped and waits for selection. How to bypass folders display/selection and go straight to photos display/selection ? Here is the current code:


Что я уже пробовал:

Intent intent = new Intent(Intent.ACTION_PICK,
        android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.setType("image/*");
startActivityForResult(intent,0);

Richard MacCutchan

Вероятно, вам нужно написать свой собственный код активности для выбора изображений, а не использовать версию системы.

tedhill13

Есть ли уже доступный код для этого?

David Crow

Что делать, если вы удалили вызов на setType()?

0 Ответов