0
I wonder if it is possible to access a specific folder in the gallery, because I take photos with my app and saved in his folder there in the gallery, but I wanted that when the user went to select an image through my app, that he only had access to this folder of the app. Below code that access to gallery.
public void loadImagefromGallery(View view) {
Intent galleryIntent = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(galleryIntent, SELECIONAR_IMAGEM);
}
Thanks for the reply! But I tested and not accessed the images of my app, I put the name of the folder that was created but did not work.
– Juliano Morche