Uploading Image From Phone To Recyclerview Gridview
I'm trying to use glide to do this. I have a Gridview recycler view with 9 pictures already in the Recycler. There is an OnClickListener implemented which takes me to the phone's g
Solution 1:
The method mLayoutManager.findViewByPosition(imagePosition) return the view representing the corresponding adapter position. You have to use findViewById(R.id.tv) on that returned view to get the image view and pass it to glide as target.
Post a Comment for "Uploading Image From Phone To Recyclerview Gridview"