views:

353

answers:

1

I've been reviewing the Supporting Multiple Screens documentation on the Android and I just need some additional clarification...

It's my understanding that designing three unique interfaces (ldpi, mdpi, and hdpi) would be the best way to go about supporting all the potential android screens with minimal scaling/distortion.

Yes, I know there are similar questions posted, however... If I create an image for the benchmark mdpi (let's say my image is 300x210, just for example) how to I determine what size I will need to recreate that image at ldpi & hdpi? This post as well as a google search leads me to believe that ldpi is just 75% of the mdpi image, and the hdpi is 150% of the mdpi image. Is this accurate?

+3  A: 

-ldpi is ~120dpi, -mdpi is ~160dpi, -hdpi is ~240dpi.

So, a 320px wide image is 2" in -mdpi. If you want a 2" image on -ldpi, you want it to be 240px (=75% of original). If you want a 2" picture on -hdpi, you need 480px (=150% of original).

Hence, your analysis is accurate.

CommonsWare