I would like to know if it is possible for me to access a specific folder in the gallery, because I take pictures with my app and saved it in the gallery folder, but I wanted it when the user was selecting an image through my app, that he only access to this app folder. Below is code that accesses the 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);
}