I have observed from the HDPI, MDPI and LDPI icons from a new Android project, they are in the ratio of 6:4:3 (72:48:36). So would it be a good idea to scale my other drawables in the same ratio? If not what is the best way to scale drawable resources for an application for deployment?
Share
HDPI represents a device with 240DPI, MDPI represents a device with 160DPI, and LDPI represents a device with 120DPI. The ratios are hence 1.5:1:0.75 (same as what you have figured out).
If you don’t provide appropriate drawables, Android will attempt to scale them up in the same ratio anyway.
Taken from the guidelines: http://developer.android.com/guide/practices/screens_support.html