Open image from custom folder

  • Replies:0
Francesco Fucini
  • Forum posts: 1

Nov 21, 2012, 5:28:43 PM via Website

Hi,
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.
How can i open directly the folder i want?
Thanks

Reply