I have 3 drawable folders in my res folder. drawable-ldpi, drawable-mdpi, and drawable-hdpi. I have low, medium, and high res images for these respective folders.
I’ve been testing my application on a Samsung Moment, which is an mdpi screen. Today, I went to test my application on a Samsung Epic (480×800), which is a hdpi screen. Unfortunately, the images my application is using are incorrectly pulled from the drawable-mdpi screen and not the drawable-hdpi.
Does anyone know why?
The images in both folders are named the same. Also, in my manifest, I have the following tag:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"
/>
I’m not quite sure why it wouldn’t be pulling the images from the drawable-hdpi folder.
I read up a bit on the subject, and I think you dont grasp the way screen auto adjustment works, I belive you can just eliminate that whole section from the manifest and it should work based on what I read are the default values, though i might be wrong about this.
Taken from here: Manifest attributes for screens support
Do read up on the link I posted, it should provide a clearer picture, as it has a couple of examples.