Reputation: 473
I need to build a simple game that will show an image on Demand of users. This game will use a high amount of images more than 800 jpg from 15k to 20k.
Is it recommended to set this amount of images in Drawable folder? The read speed it's not relevant.
And If I want this game work for different Screen sizes, Do I have to multiply these images for each screen size?
Thanks.
Upvotes: 1
Views: 747
Reputation: 7603
800 jpg images should have around 16MB and it is not very big for a game even if you want it to be 40MB for 3 more different screen sizes. However if you want to keep it small, you can try this approach:
Drawable
folder (Each image have only one version)Upvotes: 1