Comment ouvrir un dossier en particulier à partir de la galerie d'android?

Je suis uing le code ci-dessous pour ouvrir android par défaut de l'application galerie. Il ouvre tous les dossiers de l'image sous sdcard. Comment puis-je ouvrir un dossier?

    Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    intent.setType("image/*");
    startActivityForResult(Intent.createChooser(intent, "Pick any photo"), SELECT_IMAGE_FROM_GALLERY_CONSTANT);
InformationsquelleAutor Santhosh | 2012-05-25