具有内置图库的Android打开文件夹图像

时间:2012-01-08 16:13:26

标签: android android-intent android-gallery

我想用android内置库打开一个图像文件夹。 例如,我有一个包含图像的文件夹路径,我想用图库打开它。 我正在使用此代码,它会打开不包含图像的库。 有什么想法吗?

    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.fromFile(new  File(folderImages)),"image/*");
    startActivityForResult(intent, 1);

1 个答案:

答案 0 :(得分:2)

也许试试这个:

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, ""), 1)