Need some help for understanding the recycle() method of the class Bitmap.
If I have a Bitmap[] named "bmp" for example whats the difference between doing
Bitmap[i].recycle()
And
Bitmap[i]=null;
Whats the best option? Should I call both?
Thanks