从图库中选择多个图像时,如何捕获图像URI?

时间:2018-01-12 21:54:12

标签: java android

我有一个方法,允许您从本机系统库中选择多个图像。

public void selectImages(View view){
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent,"Select Picture"), 1);
}

您将如何捕获URI图像值?

1 个答案:

答案 0 :(得分:0)

使用以下库从库中选择多个图像。 https://github.com/sangcomz/FishBun

FishBun是一款高度可定制的Android图像选择器。 在活动中使用FishBun:

FishBun.with(YourActivity).setImageAdapter(new GlideAdapter()).startAlbum();