Closed rocks860 closed 5 years ago
Hello @rocks860 ,
First, && resultCode == RESULT_OK
which is used in onActivityResult
should not be used here.
Second, the ImageView
s are defined by yourself and the library is only returning Uri to you, and you should use your own way (e.g. image loading libraries) to load Uri into your ImageView
s.
I was confused a bit on how to retrieve the uri, but I figured it. As simple as : mSelectedUri = uriList.get(i);
Thank you for this sweet picker. I finally integrated it with my project, and no errors at the moment. But I am a little confused about retrieving the 6 images uri. The way I know it is
if(requestCode == GALLERY_REQUEST && resultCode == RESULT_OK){ mSelectedUri = data.getData(); }
But here inonMultiImageSelected(List<Uri> uriList, String tag)
it's an image view, and I don't know how to getivImage1 ivImage2 ivImage3 ivImage4 ivImage5 ivImage6
I hope you can help me, thank you