I have a "layout" folder and a "layout-sw1024dp" folder, both with a file layout.xml.
In the "layout" folder, I have an ImageView view with the following dimensions:
android:layout_width="150dp"
android:layout_height="150dp"
In the "layout-sw1024dp" folder, the dimensions for the same ImageView are:
android:layout_width="300dp"
android:layout_height="300dp"
Using GenyMotion, I have two devices with the following dimensions:
- 480x800
- 1080x1920
The problem is that the smaller image dimensions are showing on both devices, when the 1080x1920 device CLEARLY qualifies for the 1024 smallest width.
Am I missing something?