Skip to content Skip to sidebar Skip to footer

Set An Imageview In A Viewholder Getting Uri List From Another Activity

Okay the problem is that I am selecting multiple images and have to display all the selected images in another activity recycler view(Grid View). I got the Uri paths(Tried string a

Solution 1:

You can do it By this code:

holder.imageViewGrid.setImageURI(null); 
holder.imageViewGrid.setImageURI(photo);

just first set null to reset it.

let me know about the result

Post a Comment for "Set An Imageview In A Viewholder Getting Uri List From Another Activity"