2

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!

bdavies6086
  • 382
  • 1
  • 5
  • 19

1 Answers1

0

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!

Anubhav Sahu
  • 71
  • 1
  • 9