If you're planning to support LDPI, MDPI, HPDI, and perhaps XHDPI in the near future, is it ok to only include XHDPI drawables in the project and let the devices scale them to their desired resolution?

I've tested to resize the drawables into MDPI and HDPI in Photoshop and then compared the result with XHDPI drawables only resized by Android, and I can't see any difference at all. Is it bad design to take this shortcut? It would be nice to not have to resize each and every drawable into 3 different resolutions.

Planning to use target SDK is 2.1 or 2.2.

BR Emil

link|improve this question
feedback

6 Answers

If your min SDK is Froyo (level 8) or above, Android will downscale the images for you. Android 2.1 did not know about XHDPI resources, so it will crash when your code attempts to use an XHDPI-only asset on 2.1 and older versions.

Regardless, it's not a good solution to only include XHDPI assets. An image that's 100x100 takes 40kb; and image that's 200x200 takes 160k. So, any XHDPI assets used on MDPI devices have a 4x overhead (2x in each dimension). Lower memory use means greater efficiency, less chance for an OutOfMemoryException, and a better chance that you app will not be killed when RAM is needed by another app. That's just the memory overhead, then you deal with the processor overhead of scaling the images any time they need to load, which can be minor or significant depending on both the images and the device.

Further, specific types of images will look bad when automatically scaled. In particular, images with fine lines or fine patterns will have their detail muddied. When you shrink the images by hand, you can choose the algorithm that best matches your needs (linear, bicubic, lanczos, etc.).

link|improve this answer
feedback

I guess that's a good way to go. The only downside I can think of is the resource overhead on small scale devices and possible artifacts because of the downscaling. Actually at this year's Google IO Chris Pruett recommended embedding only high resolution assets and let opengl handle the scaling.

link|improve this answer
Good to know this. I'm now developing just by using xhdpi drawables. Is there some possibility to improve quality of downscaled images? Some good interpolation method could be great. – teepee Sep 6 '11 at 16:02
feedback

From the documentations:

if the only available resources are larger than the current screen, the system will not use them and your application will crash if no other resources match the device configuration (for example, if all layout resources are tagged with the xlarge qualifier, but the device is a normal-size screen)

This means that you can't provide only xhdpi resources.

link|improve this answer
2  
This is referring to different screen sizes not different screen densities so doesn't apply. – AshtonBRSC Nov 18 '11 at 13:08
feedback

XHDPI was only introduced in Android SDK API Level 9 (Gingerbread) so if you plan to have a minimum SDK level of less than 9 you will also need to provide, at least, HDPI drawables as well otherwise devices with Froyo or below will display nothing.

link|improve this answer
feedback

Is OK to have only xhdpi resources. But note that xhdpi was introduced with api level 8 (froyo). That is, if you target api levels <=7 you need at least also hdpi resources.

link|improve this answer
feedback

I tested in a simple app (develop for Android 2.1) using only xhdpi images and it works fine in small, medium and high resolutions... even I tested in an Android 2.1 (small resolution) and it opens the imagen without problem.

Maybe the thing with the memory is true, so its necessary someone test this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.