Evo and Galaxy Tab are both hdpi (though the Tab technically should probably be mdpi... hdpi is okay though, it is just a design decision for the device to make the overall UI larger).
Also density != "higher res". It is REALLY REALLY important to understand this. The Xoom is mdpi but much higher resolution than the hdpi phones. It just has a bigger screen, but as a result is lower density. If all you care about is the screen resolution (that is you don't care really about having your UI size remain about the same across devices), then don't use density which will pick resources based on *screen density* not resolution. You could instead use -nodpi and just do your own resource selection based on how many pixels you have to use. On Mon, May 23, 2011 at 2:35 PM, Mike <[email protected]>wrote: > I've started work to get my games to scale nicely for the higher-res > displays like the Xoom and Galaxy Tab devices. > > I've made use of the ldpi/mdpi/hdpi/xhdpi folder naming convention for > my resources which works nicely for layouts and graphics, but not so > much for text size scaling. The problem is that an Evo and a Galaxy > Tab 10.1 are both mdpi devices and will map to the same layout file. > Yet, I need to scale the text size differently for these two devices. > (I'm using text size units of dp.) > > Any ideas on something obvious I might be missing or any suggestions > would be much appreciated. > > - Mike > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- Dianne Hackborn Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and answer them. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

