I know there is already a lot of questions asked concerning this topic, but i really need help.
First of all, yes I read and reread the official link http://developer.android.com/guide/practices/screens_support.html
My problem is the following. I'm creating a game, landscape view only. I'm just displaying a little character on the screen.
Let me tell you what I understand from the doc :
- the system automatically tries to find the best image for your screen in the folders : drawable/mdpi; hdpi etc
- If the system doesn't find the best image, it will take the closest one and will re-size it, which can create artifact. Therefore it's better to provide an image for all the dp's
So how come when I provide my game with just one image in drawable/mdpi, it doesn NOT automatically re-size it proportionally to the screen of the current device ? I have tried on my tablet and S2 and I have a different result. I want the image to be exactly proportional on every screen.
Thank you