[android-developers] configuration qualifiers xhdpi vs xlarge

2012-02-24 Thread technodHr
hello there, i am working on a app that need to support tablets and for that i am keeping image resource under drawable-xhdpi it shows small images but if i rename the folder to drawable-xlarge it shows me big images can anybody explain this behavior? -- You received this message because you are

Re: [android-developers] configuration qualifiers xhdpi vs xlarge

2012-02-24 Thread Kostya Vasilyev
Those are two distinct things: screen size bucket (small/normal/large/xlarge) vs. screen pixels per inch density (ldpi/mdpi/hdpi/xhdpi). drawable-xhdpi is for images at 320dpi. If your tablet has 160dpi (a typical 1280x800, 10 tablet), Android will take the xhdpi images (lacking others) and

Re: [android-developers] configuration qualifiers xhdpi vs xlarge

2012-02-24 Thread Dianne Hackborn
On Fri, Feb 24, 2012 at 4:46 AM, Kostya Vasilyev kmans...@gmail.com wrote: drawable-xlarge is for images at 160dpi, targeting xlarge screens. Running on a typical 1280x80 10 tablet, those don't need any resizing and are used as is. Just to be clear, it may be transiently typical that a