I'm new to Android develop and my goal is to create an application that can open a gallery image slider in a custom folder.
I tried to create this activity:
1Intent i = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
2 startActivityForResult(i, RESULT_LOAD_IMAGE);
but when i click on the button that lunch this activity, the result is "all the folder" that contain an image.2 startActivityForResult(i, RESULT_LOAD_IMAGE);
How can i open directly the folder i want?
Thanks
