views:

88

answers:

1

I'm writing an app and I want one of my activities to have a background,

I've read the android docs about supporting multiple resolutions etc, but my designer is asking me what size the wallpapers should be and I do not want a lot of images for low,normal,high dpi in all the screen sizes.

What would be the most space efficient way to get a nice screen filling graphic background on all those screens?

Android is great and all, but I do not want to end up with a huge app since I need all sizes of images for everything.

+1  A: 

One approach is to design for the densities and use the Icon Design guidelines for icons, and the dimensions specified in the "Range of Screens" area in the Supporting Multiple Screens guide for your background images.

For the background images be sure to take the status bar dimensions into consideration.

You can put your resources in the appropriate drawable-mdpi, drawable-hdpi, drawable-ldpi folders and they will be used appropriately.

keno
that would mean that I would need 5 differently sized wallpapers (not writing for small screen), I'm not displaying the status bar since it's a game.
Mervin
I'm assuming since it's a game, you are only doing landscape. You would only need 1 for mdpi which would be 480x320 ... 2 for hdpi, 800x480 and 854x480 ... so 3 in total
keno