Question

The latest version of android is 3.0 Honeycomb. Before this version, we are providing 3 resolutions images for the application,i.e. hdpi, mdpi and ldpi.

But, What are the icon resolutions for the 3.0 Honeycomb? or the same icon resolutions works with Honeycomb version as well. (Because Tablet are of large screen i.e. Extra high density (320), xhdpi)

I have already gone through SDK: http://developer.android.com/guide/practices/ui_guidelines/icon_design.html, http://developer.android.com/guide/practices/screens_support.html , but failed to find out the solutions.

Please if you being master and knowing about the same then please share with me.

Was it helpful?

Solution

You have the xhdpi and xlarge qualifiers for the resources.

Also, the usual rule to know the size of an hdpi icon corresponding to a mdpi icon is to multiply by 1.5 the dimensions (because resolution is 1.5 times greater: 240dpi vs 160dpi). For tablets width xhdpi screens, you could apply the same calculation: multiply by 2 the dimensions of mdpi images (320dpi vs 160dpi).

OTHER TIPS

looking at the sources of honeycomb google uses 115x115px images for xhdpi with 8px outer boarder on all sides.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top