I have 184 imageViews/Labels in one of my Layouts. Each one is assigned a bitmap from inside the Designer. I only need to display maybe 50 of them at a time. Right now I am using the img.Visible = True/False command.
Does anyone know if img.Visible = False frees up the memory that was used for that bitmap?
Or should I be removing the bitmap for each imageView from inside my program when it doesn't need to be displayed? Then I will add the bitmap to each imageView when I want it displayed.
Does anyone know if img.Visible = False frees up the memory that was used for that bitmap?
Or should I be removing the bitmap for each imageView from inside my program when it doesn't need to be displayed? Then I will add the bitmap to each imageView when I want it displayed.