RE: [android-developers] Android DPI problems

2012-06-08 Thread Tommy Hartz
, June 07, 2012 4:28 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] Android DPI problems You shouldn't be thinking about dpi at all. You will currently encounter devices with only 5 densities: 120, 160, 213, 240, 320. Every device will have one of those

Re: [android-developers] Android DPI problems

2012-06-08 Thread RichardC
:* android-developers@googlegroups.com [mailto: android-developers@googlegroups.com] *On Behalf Of *Dianne Hackborn *Sent:* Thursday, June 07, 2012 4:28 PM *To:* android-developers@googlegroups.com *Subject:* Re: [android-developers] Android DPI problems You shouldn't be thinking about dpi at all

[android-developers] Android DPI problems

2012-06-07 Thread Tommy Hartz
Hey everyone, I am a little confused on something. I have created multiple layouts for different screen sizes. The problem I run into is that on my HTC Inspire I have a normal screen with ~217dpi, on the droid X it reports to have a normal screen but it has ~220 dpi. When I run my app it pulls the

Re: [android-developers] Android DPI problems

2012-06-07 Thread Dianne Hackborn
You shouldn't be thinking about dpi at all. You will currently encounter devices with only 5 densities: 120, 160, 213, 240, 320. Every device will have one of those densities; 217dpi and 220dpi are not valid densities. You will care about this pretty much only for your graphics, though the

RE: [android-developers] Android DPI problems

2012-06-07 Thread Tommy Hartz
@googlegroups.com Subject: Re: [android-developers] Android DPI problems You shouldn't be thinking about dpi at all. You will currently encounter devices with only 5 densities: 120, 160, 213, 240, 320. Every device will have one of those densities; 217dpi and 220dpi are not valid densities. You

Re: [android-developers] Android DPI problems

2012-06-07 Thread RichardC
:* Re: [android-developers] Android DPI problems You shouldn't be thinking about dpi at all. You will currently encounter devices with only 5 densities: 120, 160, 213, 240, 320. Every device will have one of those densities; 217dpi and 220dpi are not valid densities. You