i am making a game for android and currently scroll the map tile by tile, which is not very smooth when the map is made up of 500 tiles. I am loading the tiles based on a text file with letters etc and storing multiple Bitmaps in a ArrayList.
My question: is there any way that i can load all the bitmap tiles on the arraylist to a single Bitmap so that i can draw the single bitmap at one X,Y coordinate?
Thanks.