does all resource (all in res folder if on eclipse IDE), specially drawable image, is loaded to memory during runtime? or it is just like a file which is available when the application need it?
A:
Resources are loaded on demand only, so no extra memory use if you don't call them.
They are however in your application package, so they take up disk space.
Jean
2010-10-19 07:17:06