Android Networkimageview Disappear In Recyclerview After Scrolling List (volley)
Am using NetworkImageView with volley library and RecyclerView. After scrolling list some images disappear from the NetworkImageView. I am writing my code in the onBindViewHolder()
Solution 1:
I do not know NetworkImageView
but I advise you to use Picasso to download images from the web, it's great! Use it with a normal ImageView
!
Picasso.with(context).load(image_url).into(image_view);
Post a Comment for "Android Networkimageview Disappear In Recyclerview After Scrolling List (volley)"