I'm using android 2.3.3.
I've created two devices: normal screen HVGA
and large screen with WVGA854
.
I've added images to drawable-mdpi
with size 58x58px and another images to drawable-hdpi
with size 144x144px.
I've also added some text to AndroidManifest.xml
:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="false"
android:xlargeScreens="false"
android:anyDensity="true">
</supports-screens>
I assume, two of them (devices) will show me two different sizes of images. But somehow both show the same images from mdpi
.
I know it because images in hdpi should be rotated clockwise.
I've read this links but I'm still confused. Help.
Links:
Tutorial: Multiple Screen Support
Supporting Multiple Screens
Am I right if I say that this app will be available only for normal and larger sreen devices?