I would just use a set of drawables with the largest DPI your minimum SDK version allows and let the system scale it for you. So typically, just have HDPI drawables if your minSdkVersion < 8, and XHDPI drawables if your minSdkVersion >= 8. You may get a slight performance improvement if you provide all the various DPI drawables, but not only a the size of your APK will increase, but it also becomes an ongoing maintanence concern.
On May 23, 2:37 pm, nadam <[email protected]> wrote: > Samsung decided to make it's mdpi-device Galaxy Tab use hdpi drawables > simply because it looks better. Motorola decided to stick to mdpi on > the Xoom. This is probably the core of the issues people have with > making their apps look good on tablets. > > I know there are ways to "make it right" which possibly work for ~95% > of all apps. Then we have the ~5% apps where it makes more sense to > have larger drawables on larger screens. > > Is there any way to force the Xoom (and similar devices) to use the > hdpi drawables or even xhdpi? -- 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

