I asked a lead in to this question here. I want to know if it is recommended to read the android resources (in the res) folder on the ui-thread or on the game thread for a simple game (based off the lunar lander sample). I see in lunar lander that they allocate resources before starting the game loop. However that doesn't scale up very well if there are lots of resources. The answer to my previous question says that it is ok to read resources like bitmaps on the background thread. Now I want to know if this is the correct way to do things.
An alternate architecture would be to post a Runnable to the ui-thread from time to time and allocate resources then.
Does garbage collection come into play? I wasn't sure which thread GC runs on. But my guess is that it runs on the thread on which the object was allocated.
