I'm a beginner developing an Android app that needs to display a clip art type png image the full width of the screen in both portrait and landscape mode:
Portrait:
Landscape:
Would I be right in saying that in order to cater for each screen resolution and orientation I need to include the following image sizes?:
Image width: Resource folder: xxhdpi – 1920 px drawable-land-xxhdpi xhdpi – 1280 px drawable-land-xhdpi xxhdpi – 1080 px drawable-xxhdpi hdpi – 960 px drawable-land-hdpi xhdpi – 720 px drawable-xhdpi mdpi – 640 px drawable-land-mdpi hdpi – 540 px drawable-hdpi ldpi - 480 px drawable-land-ldpi mdpi – 360 px drawable-mdpi ldpi - 270 px drawable-ldpi
This seems overkill. The App could have a thousand of these images and thats 10 versions of each.
What is the normal approach in this scenario? Would you scale the images to suit?