I read the official document about supporting multiple screens http://developer.android.com/guide/practices/screens_support.html
According to that document, I should just create different directories for different resolultion.
Now the question. How to support devices with normal screen and high density or low density?
I ask it because, there are two posibilities (WVGA800 (480×800) and WVGA854 (480×854)) and (WQVGA400 (240×400) and WQVGA432 (240×432)) and I don’t know where to store some background images for them.
I would take drawable-normal-hdpi or drawable-normal-ldpi, but how to make difference between 480×800 and 480×854 or between 240×400 and 240×432?!
Thank you in advance,
Mur
This is the documentation on how to specify alternate resources.
So you could do
drawable-normal-hdpifor medium screens with high dpi.