Using Smallest Width Configuration Qualifier
Solution 1:
I had the same problem and tracked this down. I believe there was a bug in ICS (Android 4.0.3 for me) where non-XHDPI devices take XHDPI values. Because most XHDPI devices started off in Jelly Bean (Nexus 4, Nexus 10), qualifying the folders with -v16 at the end (instead of nothing or -v14) solves the problem. 10" non-XHDPI devices running Jelly Bean do not have this bug so it seems to work. This does mean any XHDPI devices pre-JB will be broken, but I'm okay taking that risk.
Solution 2:
Tablets of resolution like 1280x800 gets their resources from drawable-xhdpi of course if the device is of the density hdpi.
So designing for tablet to for different resolution you will have to create different folders of images with appropriate resolution name.
I think this will help you more . http://developer.android.com/guide/practices/screens_support.html
thanks
Post a Comment for "Using Smallest Width Configuration Qualifier"