I need to pass the same Bitmap
to a bunch of Objects which are later put into an ArrayList
.
The Bitmap is 1024x512 pixels big and I'm always passing the same Bitmap
Object to about ~1000 Objects.
I need to do this because every Object does something with the Bitmap
later in the code.
Is this safe to do memory-wise?