Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a background that I need fit in all screen sizes. I have three folders hdpi, ldpi and mdpi for drawables, but in emulator there are no referense what resolution is hdpi and what is mdpi .. ldpi.

share|improve this question

3 Answers

up vote 47 down vote accepted

You should read Supporting multiple screens. You must define dpi on your emulator. 240 is hdpi, 160 is mdpi and below that are usually ldpi.

Extract from Android Developer Guide link above:

320dp: a typical phone screen (240x320 ldpi, 320x480 mdpi, 480x800 hdpi, etc).  
480dp: a tweener tablet like the Streak (480x800 mdpi).  
600dp: a 7” tablet (600x1024 mdpi).  
720dp: a 10” tablet (720x1280 mdpi, 800x1280 mdpi, etc).
share|improve this answer
1  
I put images in hdpi ldpi and mdpi folder, but when im running a QVGA emulator it must use ldpi but it resizes my hdpi images and this looks not as good as it should be – Arthur Shniv May 29 '11 at 9:34
and what is the screen resolution for this QVGA emulator? – evilone May 29 '11 at 9:39
resolution is 120 dip. – Arthur Shniv May 29 '11 at 9:45
i mean screen size in pixels. – evilone May 29 '11 at 9:46
2  
320*240 standart for qvga – Arthur Shniv May 29 '11 at 9:54
show 1 more comment

The documentation is quite sketchy as far as definitive resolutions go. After some research, here's the solution I came to: Android splash screen image sizes to fit all devices

It's basically guided towards splash screens, but it's perfectly applicable to images that should occupy full screen.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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