选择多个图像并将其添加到画布

时间:2014-03-05 23:11:18

标签: android android-image

我试图让用户选择多个图像,然后在画布上加载所选图像。无论如何都要将选定的图像保存在一个画布上。如果我使用

  Intent pickIntent = new Intent();
            pickIntent.setType("image/*");
            pickIntent.setAction(Intent.ACTION_GET_CONTENT);
            //we will handle the returned data in onActivityResult
            startActivityForResult(Intent.createChooser(pickIntent, "Select Picture"), PICKER);

这将返回所有图像,但我想要指定文件夹中的图像 例如。 String filepath =“/ sdcard / MyFolder /”;

谢谢,

0 个答案:

没有答案