Im using RecyclerView to display a list containing an imageView. To make the UI more fluently, I load 58dp thumbnails saved on sd card into these i
Due to view reuse you'll fetch views with content already on them, this was a problem on ListViews too if you were using the ViewHolder pattern, which you should.
There are two solutions here, the good practice and the bad hack:
In the good practice you set your ImageView to display nothing at the
beginning of bindViewHolder(VH holder, int position) using
setDrawable(null) or similar.
In the bad hack you wouldn't recycle/reuse views, not enforcing the ViewHolder pattern, and you'd inflate it every time, but that's only allowed in ListView and other old components.