Search code examples
javaandroidbitmapandroid-recyclerviewrecycle

Does the RecyclerView recycle Bitmaps stored within ImageViews


I am trying to track down a bug where an ImageView is using a recycled Bitmap, my question is will the RecyclerView automatically recycle my Bitmaps when the ViewHolder is recycled?

Cheers!


Solution

  • No, it doesn't. Viewholder is intended to prevent the extra resources for findViewByid look ups. i dont think it does anything extra than that!